-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.08 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
{
"name": "nomidea",
"version": "0.1.0",
"description": "notion of modules as interface",
"private": true,
"repository": "https://github.com/imelbox/nomidea.git",
"author": "Mohamed Tamsamani <mohamed@tousfacteurs.com>",
"license": "MIT",
"prisma": {
"seed": "node prisma/seed.js"
},
"scripts": {
"build": "next build",
"dev": "next dev",
"start": "next start",
"stop": "next stop",
"lint": "next lint",
"test": "next test",
"vercel-build": "prisma generate && prisma migrate deploy && next build",
"prisma:generate": "prisma generate"
},
"dependencies": {
"@prisma/client": "^3.0.2",
"ahooks": "^2.10.9",
"next": "^11.1.2",
"prisma": "3.0.2",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@types/node": "^16.9.1",
"@types/react": "^17.0.20",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.3.2",
"typescript": "^4.4.3"
}
}