-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.36 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
{
"name": "nextjs-with-typescript-example-template",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=12.22.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"release": "standard-version",
"prepare": "husky install",
"commit": "git-cz"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"dependencies": {
"next": "12.3.1",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@commitlint/cz-commitlint": "^17.1.2",
"@types/node": "17.0.23",
"@types/react": "17.0.43",
"@types/react-dom": "17.0.14",
"commitizen": "^4.2.5",
"eslint": "8.12.0",
"eslint-config-next": "12.1.2",
"eslint-config-prettier": "^8.5.0",
"husky": "^7.0.4",
"inquirer": "8",
"lint-staged": "^12.3.7",
"postcss": "^8.4.12",
"prettier": "2.6.2",
"sass": "^1.49.11",
"standard-version": "^9.3.2",
"stylelint": "^14.6.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-prettier-scss": "^0.0.1",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^25.0.0",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-order": "^5.0.0",
"typescript": "^4.6.0"
}
}