-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 842 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
{
"name": "code-challenge",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@prisma/client": "^3.10.0",
"bcrypt": "^5.0.1",
"moment": "^2.29.3",
"next": "12.1.0",
"next-auth": "^4.2.1",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/node": "17.0.21",
"@types/react": "17.0.39",
"autoprefixer": "^10.4.2",
"eslint": "8.10.0",
"eslint-config-next": "12.1.0",
"postcss": "^8.4.7",
"prisma": "^3.10.0",
"tailwindcss": "^3.0.23",
"ts-node": "^10.7.0",
"typescript": "4.6.2"
}
}