-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 935 Bytes
/
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
{
"name": "nextjs-test",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "git pull && npx prisma generate && next dev",
"build": "npx prisma generate && next build",
"start": "next start",
"lint": "next lint"
},
"prisma": {
"schema": "src/lib/prisma/schema.prisma"
},
"dependencies": {
"@prisma/client": "^5.3.1",
"bcrypt": "^5.1.1",
"bootstrap-icons": "^1.11.1",
"mysql2": "^3.6.1",
"next": "latest",
"next-auth": "^4.23.1",
"react": "latest",
"react-dom": "latest",
"react-leaflet": "^4.2.1",
"web-push": "^3.6.6"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/leaflet": "^1.9.6",
"@types/node": "latest",
"@types/react": "latest",
"@types/react-dom": "latest",
"@types/web-push": "^3.6.1",
"eslint": "latest",
"eslint-config-next": "latest",
"prisma": "^5.3.1",
"typescript": "latest"
}
}