-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.3 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "next-admin",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 10010",
"build": "next build",
"build:spa": "next build && next export",
"build:analyze": "ANALYZE=true next build",
"start": "next start",
"format": "prettier --write .",
"type-check": "tsc --pretty --noEmit",
"lint": "eslint --ext .js,.ts,.tsx .",
"lint:fix": "eslint --ext .js,.ts,.tsx . --fix",
"release": "standard-version --no-verify"
},
"dependencies": {
"@ant-design/icons": "^4.4.0",
"@emotion/react": "^11.1.4",
"@emotion/styled": "^11.0.0",
"@next/bundle-analyzer": "^10.0.6",
"ahooks": "^2.9.4",
"antd": "^4.11.2",
"axios": "^0.21.1",
"clsx": "^1.1.1",
"history": "^5.0.0",
"less": "^4.1.1",
"less-loader": "^7.3.0",
"lodash.clonedeep": "^4.5.0",
"next": "^10.0.6",
"next-compose-plugins": "^2.2.1",
"next-iron-session": "^4.1.10",
"null-loader": "^4.0.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-query": "^3.6.0",
"react-router": "^6.0.0-beta.0",
"react-router-dom": "^6.0.0-beta.0",
"zustand": "^3.3.1"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@dpyzo0o/eslint-config-next": "^0.1.3",
"@emotion/babel-plugin": "^11.1.2",
"@emotion/eslint-plugin": "^11.0.0",
"@types/node": "^14.14.22",
"@types/nprogress": "^0.2.0",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"babel-eslint": "^10.1.0",
"babel-plugin-import": "^1.13.3",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"msw": "^0.26.0",
"prettier": "^2.2.1",
"standard-version": "^9.1.0",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run type-check",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --ext .js,.ts,.tsx",
"prettier --write"
],
"*.{css,less,md,json}": [
"prettier --write"
]
}
}