-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.8 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "web2-next-template",
"version": "0.1.0",
"author": "jelly",
"private": true,
"scripts": {
"dev": "next dev",
"build:stage": "APP_ENV=test next build",
"build": "APP_ENV=production prisma generate && <actual-build-command> next build",
"start": "next start",
"lint": "yarn prettier && yarn eslint",
"eslint": "next lint --fix --dir src",
"prettier": "prettier --check '**/*.{tsx, ts, jsx, js, css, html}' --write '**/*.{tsx, ts, jsx, js, css, html}'",
"prepare": "husky install",
"postinstall": "prisma generate"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,html}": "yarn lint"
},
"dependencies": {
"@auth/prisma-adapter": "^2.1.0",
"@chakra-ui/next-js": "^2.1.5",
"@chakra-ui/react": "^2.8.1",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^5.14.0",
"@vercel/postgres": "^0.8.0",
"ahooks": "^3.7.8",
"copy-to-clipboard": "^3.3.3",
"framer-motion": "^10.16.4",
"next": "^14.2.3",
"next-auth": "^5.0.0-beta.18",
"prettier-plugin-tailwindcss": "^0.6.1",
"react": "^18",
"react-dom": "^18",
"react-toastify": "^9.1.3",
"zustand": "^4.5.2"
},
"devDependencies": {
"@commitlint/cli": "^18.0.0",
"@commitlint/config-conventional": "^18.0.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10",
"eslint": "^8",
"eslint-config-next": "13.5.6",
"husky": "^8.0.3",
"lint-staged": "^15.2.5",
"postcss": "^8",
"prettier": "^3.0.3",
"prisma": "^5.14.0",
"tailwindcss": "^3",
"typescript": "^5"
},
"prisma": {
"schema": "./src/lib/prisma/schema.prisma"
}
}