-
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.13 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.13 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": "nextjs-demo",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"cypress": "cypress open",
"test": "cypress run",
"e2e": "start-server-and-test start http://localhost:3000 cypress"
},
"dependencies": {
"@hookform/resolvers": "^2.9.11",
"@prisma/client": "^3.15.2",
"bcryptjs": "^2.4.3",
"cookies-next": "^2.1.2",
"jsonwebtoken": "^8.5.1",
"next": "12.1.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hook-form": "^7.57.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "17.0.19",
"@types/react": "17.0.39",
"@types/tailwindcss": "^3.1.0",
"@types/yup": "^0.29.14",
"autoprefixer": "^10.4.21",
"cypress": "^9.7.0",
"eslint": "8.9.0",
"eslint-config-next": "12.1.0",
"postcss": "^8.5.4",
"prisma": "^3.15.2",
"start-server-and-test": "^1.15.4",
"tailwindcss": "^3.4.17",
"tailwindcss-debug-screens": "^2.2.1",
"typescript": "4.5.5"
}
}