-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.38 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
{
"name": "next-ts-chakra-boilerplate",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"tsc-node": "tsc -p tsconfig.json",
"lint:js": "eslint src --ext .ts --ext .tsx --fix",
"lint": "next lint",
"check-updates": "ncu -u",
"check-updates-minor": "ncu -u -t minor"
},
"husky": {
"hooks": {
"pre-commit": "npm run tsc-node && lint-staged"
}
},
"lint-staged": {
"{**/*,*}.{json,css,md}": [
"prettier --write"
],
"{**/*,*}.{ts,tsx,js,jsx}": [
"eslint .eslintrc.js --fix --max-warnings=-1",
"prettier --write"
]
},
"dependencies": {
"@chakra-ui/react": "^2.4.9",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"framer-motion": "^9.0.2",
"next": "13.1.6",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@types/node": "^18.13.0",
"@types/react": "^18.0.27",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "8.33.0",
"eslint-config-next": "13.1.6",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^4.3.8",
"lint-staged": "^13.1.1",
"npm-check-updates": "^16.6.5",
"prettier": "^2.8.4",
"typescript": "^4.9.5"
}
}