-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
46 lines (46 loc) · 1016 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
39
40
41
42
43
44
45
46
{
"name": "isr-issue-repro",
"version": "0.1.0",
"private": true,
"scripts": {
"commit": "git-cz",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "npx tsc --noEmit",
"format": "npx prettier --write"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && lint-staged"
}
},
"lint-staged": {
"*.{css,js,jsx,ts,tsx,json,md,mdx,yml}": "npm run format"
},
"dependencies": {
"next": "11.1.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hook-form": "7.15.3",
"swr": "1.0.1"
},
"devDependencies": {
"@types/node": "16.9.1",
"@types/react": "17.0.20",
"autoprefixer": "10.3.4",
"commitizen": "4.2.4",
"cz-conventional-changelog": "3.3.0",
"husky": "4.3.8",
"lint-staged": "11.1.2",
"postcss": "8.3.6",
"prettier": "2.4.0",
"tailwindcss": "2.2.15",
"typescript": "4.4.3"
}
}