-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 loc) · 977 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
37
38
{
"name": "nextjs-starter",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"seed": "node prisma/seed.js",
"prepare": "husky install",
"pre-commit": "next lint --fix && git add -A ."
},
"dependencies": {
"@chakra-ui/react": "^2.2.1",
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@prisma/client": "^4.0.0",
"atropos": "^1.0.2",
"boring-avatars": "^1.7.0",
"chrome-aws-lambda": "^10.1.0",
"express-jwt": "^7.7.5",
"framer-motion": "^6.3.16",
"next": "^12.2.0",
"next-auth": "^4.8.0",
"nextjs-progressbar": "^0.0.14",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.33.1",
"react-icons": "^4.4.0"
},
"devDependencies": {
"eslint": "8.7.0",
"eslint-config-next": "12.0.8",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"prisma": "^4.0.0"
}
}