forked from SecureAI-Tools/SecureAI-Tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 3.03 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "secure-ai-tools",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "prisma generate && next dev -H 0.0.0.0 --port 28669",
"build": "prisma generate && next build",
"build:docker": "prisma generate && env-cmd -f deployment/.env.build next build",
"start": "next start",
"lint": "next lint",
"p:studio": "prisma studio",
"p:fmt": "prisma format --schema=prisma/schema.prisma",
"p:migrate:dev": "npx prisma migrate dev --name",
"p:generate": "npx prisma generate",
"p:squash-migrations": "rm -rf prisma/migrations/ && npx prisma migrate dev --name squashed_migrations",
"db-seed:build": "npx tsc tools/db-seed.mts --module NodeNext",
"db-seed:dev": "yarn db-seed:build && node tools/db-seed.mjs",
"type-check": "tsc",
"format": "prettier --ignore-path .gitignore \"**/*.+(ts|js|tsx)\" --write"
},
"dependencies": {
"@analytics/mixpanel": "^0.4.0",
"@aws-sdk/client-s3": "^3.395.0",
"@aws-sdk/s3-request-presigner": "^3.395.0",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^5.3.1",
"@react-pdf-viewer/core": "3.12.0",
"@react-pdf-viewer/page-navigation": "^3.12.0",
"@svgr/webpack": "8.1.0",
"@types/lodash": "^4.14.197",
"@types/ua-parser-js": "^0.7.37",
"ai": "^2.2.12",
"analytics": "^0.8.9",
"autoprefixer": "^10.4.15",
"bcrypt": "^5.1.1",
"bytes": "^3.1.2",
"chromadb": "^1.6.1",
"clipboard-copy": "^4.0.1",
"cohere-ai": "^7.4.3",
"crypto-random-string": "^5.0.0",
"env-cmd": "^10.1.0",
"flowbite": "^1.8.1",
"flowbite-react": "^0.6.4",
"http-status-codes": "^2.2.0",
"javascript-time-ago": "^2.5.9",
"langchain": "^0.0.200",
"lodash": "^4.17.21",
"mammoth": "^1.6.0",
"moment": "^2.29.4",
"nanoid": "^5.0.3",
"next": "13.4.19",
"next-auth": "^4.23.1",
"node-fetch": "^3.3.2",
"openai-edge": "^1.2.2",
"papaparse": "^5.4.1",
"pdf-parse": "^1.1.1",
"pdfjs-dist": "3.4.120",
"postcss": "^8.4.28",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-text-format": "^2.0.31",
"react-time-ago": "^7.2.1",
"sanitize-filename": "^1.6.3",
"sharp": "^0.32.6",
"slugify": "^1.6.6",
"swr": "^2.2.1",
"tailwindcss": "^3.3.3",
"twind": "0.16.19",
"ua-parser-js": "^1.0.36",
"winston": "^3.10.0",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/bytes": "^3.1.4",
"@types/node": "^20.9.4",
"@types/papaparse": "^5.3.8",
"@types/react": "18.2.20",
"@types/react-dom": "18.2.7",
"@typescript-eslint/eslint-plugin": "6.4.0",
"@typescript-eslint/parser": "6.4.0",
"encoding": "^0.1.13",
"eslint": "8.47.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-next": "13.4.16",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "3.6.0",
"eslint-plugin-unused-imports": "^3.0.0",
"prettier": "3.0.2",
"prisma": "^5.3.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
}
}