-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.8 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
{
"name": "@opd/desktop-template",
"version": "1.0.0",
"description": "desktop template for pangu",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "pangu dev",
"build": "pangu build",
"lint:style": "stylelint ./src/**/*.less --fix",
"lint": "eslint . --ext=.js,.jsx,.ts,.tsx --fix"
},
"repository": {
"type": "git",
"url": "[email protected]:open-data-plan/desktop-template.git"
},
"author": "kagawagao <[email protected]> (https://kingsongao.com/)",
"license": "MIT",
"dependencies": {
"@ant-design/icons": "^5.6.1",
"antd": "^5.23.4",
"classnames": "^2.5.1",
"core-js": "^3.40.0",
"path-to-regexp": "^8.2.0",
"rc-animate": "^3.1.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router": "^7.1.4",
"react-router-dom": "^7.1.5"
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@opd/pangu": "^1.13.8",
"@types/classnames": "^2.3.4",
"@types/history": "^5.0.0",
"@types/lodash": "^4.17.15",
"@types/qs": "^6.9.18",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@types/react-router": "^5.1.20",
"@types/react-router-dom": "^5.3.3",
"react-test-renderer": "^19.0.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"*.{css,less}": [
"stylelint --fix"
]
},
"prettier": "@opd/prettier-config-pangu",
"eslintConfig": {
"extends": "@opd/eslint-config-pangu"
},
"jest": {
"preset": "@opd/jest-preset-pangu",
"testEnvironment": "jsdom"
},
"browserslist": [
"last 2 version",
"IE >= 11"
],
"stylelint": {
"extends": [
"@opd/stylelint-config-pangu"
]
},
"babel": {
"presets": [
"@opd/babel-preset-app"
]
}
}