-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.27 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.27 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
45
46
{
"name": "nextstarter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"vercel-build": "prisma db push && next build",
"prisma:generate": "prisma generate",
"lint": "eslint --fix .",
"format": "prettier '{components,content,pages,styles}/**/*.{css,js}' --write",
"pre-commit": "lint-staged && pretty-quick --staged",
"prepare": "husky install"
},
"dependencies": {
"@prisma/client": "^4.14.1",
"autoprefixer": "^10.4.13",
"next": "^13.2.1",
"next-seo": "^5.15.0",
"postcss": "8.4.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.2.7"
},
"devDependencies": {
"eslint": "8.35.0",
"eslint-config-next": "^13.2.1",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-simple-import-sort": "10.0.0",
"husky": "^8.0.3",
"lint-staged": "13.1.2",
"prettier": "2.8.4",
"pretty-quick": "3.1.3",
"prisma": "^4.14.1",
"react-inlinesvg": "3.0.2",
"tailwindcss-debug-screens": "2.2.1"
},
"lint-staged": {
"*.js": "eslint --fix"
}
}