-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.09 KB
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
{
"name": "reactstore",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postinstall": "prisma generate"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed/seed.ts"
},
"dependencies": {
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^5.9.1",
"bcrypt": "^5.1.0",
"keen-slider": "^6.8.6",
"moment": "^2.29.4",
"next": "^14.1.0",
"next-auth": "^4.24.5",
"normalize.css": "^8.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.12.0",
"sharp": "^0.33.3",
"swr": "^1.3.0"
},
"devDependencies": {
"@prisma/nextjs-monorepo-workaround-plugin": "^5.9.1",
"@types/bcrypt": "^5.0.0",
"@types/node": "^18.7.18",
"@types/react": "18.0.20",
"@types/react-dom": "18.0.6",
"eslint": "8.23.1",
"eslint-config-next": "^13.0.1",
"mocha": "^10.2.0",
"prisma": "^5.9.1",
"sass": "^1.55.0",
"ts-node": "^10.9.2",
"typescript": "^4.8.3"
}
}