-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
97 lines (97 loc) · 2.51 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "react-keepAlive",
"version": "2.0.0",
"description": "react18 + antd4 ",
"author": "antes",
"license": "MIT",
"keywords": [
"keepAlive",
"react"
],
"scripts": {
"createApi": "npx pont generate && npm run lint",
"prepare": "husky install",
"lint": "eslint src --fix --ext .ts,.tsx",
"dev": "vite -m development",
"build": "tsc --noEmit && vite build -m production",
"preview": "vite preview",
"changelog": "auto-changelog -p"
},
"dependencies": {
"antd": "^4.23.5",
"ramda": "^0.27.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.9.0"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@types/node": "^16",
"@types/ramda": "^0.27.1",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@vitejs/plugin-react": "^2.1.0",
"auto-changelog": "^2.3.0",
"autoprefixer": "^9.8.6",
"babel-plugin-import": "^1.13.3",
"babel-preset-react": "^6.24.1",
"commitlint": "^12.1.4",
"eslint": "^8.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-formatjs": "^4.3.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-standard": "^4.0.0",
"husky": "^7.0.1",
"less": "^4.1.1",
"lint-staged": "^11.0.1",
"pont-engine": "1.2.0",
"postcss": "^8.4.16",
"postcss-import": "^14.1.0",
"postcss-preset-env": "^7.8.0",
"prettier": "^2.4.1",
"sass": "^1.35.2",
"tslib": "^2.3.1",
"typescript": "^5.0.0",
"typescript-plugin-css-modules": "^3.4.0",
"vite": "^3",
"vite-plugin-checker": "^0.5.1",
"vite-plugin-html": "^3.2.0",
"vite-plugin-imp": "^2.3.0",
"vite-plugin-style-import": "^2.0.0",
"vite-plugin-svgr": "^2.2.1"
},
"engines": {
"node": ">=14.0.0"
},
"auto-changelog": {
"output": "HISTORY.md",
"template": "keepachangelog.template",
"unreleased": true,
"commitLimit": false
},
"lint-staged": {
"*.{tsx,ts,js}": [
"eslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
},
"sideEffects": [
"*.css",
"*.sass",
"*.scss"
]
}