-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.32 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
{
"name": "nextjs-prisma-cerbos",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@cerbos/grpc": "^0.19.0",
"@cerbos/orm-prisma": "^1.0.0",
"@hapi/iron": "7.0.1",
"@prisma/client": "^5.0.0",
"cookie": "0.7.2",
"next": "14.2.21",
"next-connect": "1.0.0",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"postcss": "^8.4.21",
"prettier": "^3.0.0",
"prisma": "^5.0.0",
"react": "^18.2.0",
"react-dom": "18.3.1",
"swr": "^2.0.0",
"tailwindcss": "^3.2.4",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/cookie": "^0.6.0",
"@types/node": "20.17.10",
"@types/passport-local": "^1.0.35",
"@types/react": "18.3.16",
"@types/react-dom": "18.3.5",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"autoprefixer": "^10.4.13",
"eslint": "^8.32.0",
"eslint-config-next": "^14.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.1",
"typescript": "^5.0.0"
},
"prisma": {
"seed": "node prisma/seed.js"
}
}