-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.06 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
43
44
45
46
{
"name": "next-template",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p 3000",
"lint": "next lint",
"prisma studio": "npx prisma studio"
},
"dependencies": {
"@headlessui/react": "^1.4.2",
"axios": "^0.27.2",
"classnames": "^2.3.1",
"cookie": "^0.5.0",
"create-hash": "^1.2.0",
"formik": "^2.2.9",
"http-status": "^1.5.2",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"next": "^12.1.0",
"next-connect": "^0.12.2",
"react": "17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"request-ip": "^2.1.3",
"uuid": "^8.3.2",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/jsonwebtoken": "^8.5.6",
"@types/node": "^17.0.18",
"@types/react": "^17.0.39",
"autoprefixer": "^10.4.0",
"eslint": "^8.9.0",
"eslint-config-next": "^12.1.0",
"postcss": "^8.3.11",
"prettier": "^2.4.1",
"tailwindcss": "^3.0.23",
"typescript": "^4.5.5"
},
"prettier": {
"printWidth": 100,
"tabWidth": 2
}
}