-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.07 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
{
"name": "example-next-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"serve": "next start",
"lint": "next lint",
"server": "ts-node-dev -P tsconfig.server.json server/index.ts",
"start": "concurrently -k \"npm run dev\" \"npm run server\""
},
"dependencies": {
"@hookform/resolvers": "^2.8.0",
"@types/express": "^4.17.13",
"@types/faker": "^5.5.8",
"axios": "^0.21.1",
"classnames": "^2.3.1",
"express": "^4.17.1",
"faker": "^5.5.3",
"next": "11.1.0",
"nookies": "^2.5.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hook-form": "^7.14.0",
"react-icons": "^4.2.0",
"swr": "^1.0.0",
"yup": "^0.32.9"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/classnames": "^2.3.1",
"@types/cookie": "^0.4.1",
"@types/react": "17.0.19",
"@types/yup": "^0.29.13",
"concurrently": "^6.2.1",
"eslint": "7.32.0",
"eslint-config-next": "11.1.0",
"ts-node-dev": "^1.1.8",
"typescript": "4.4.2"
}
}