-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.04 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.04 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
{
"name": "next.js-template",
"version": "0.1.0",
"private": true,
"engines": {
"npm": ">=7.0.0"
},
"scripts": {
"postinstall": "husky install",
"typecheck": "tsc",
"lint": "eslint .",
"prettier": "prettier --check \"**/*.{js,jsx,ts,tsx,css,md,json}\"",
"test": "npm run typecheck && npm run lint && npm run prettier",
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"dependencies": {
"next": "11.1.0",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@types/node": "16.0.0",
"@types/react": "17.0.19",
"@typescript-eslint/eslint-plugin": "4.28.5",
"@typescript-eslint/parser": "4.28.5",
"eslint": "7.32.0",
"eslint-config-next": "11.1.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-react": "7.24.0",
"husky": "7.0.1",
"lint-staged": "11.2.0",
"prettier": "2.3.2",
"stylelint": "13.13.1",
"stylelint-config-prettier": "8.0.2",
"stylelint-config-standard": "22.0.0",
"typescript": "4.3.5"
}
}