This repository has been archived by the owner on Jan 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.99 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
{
"name": "doly-admin-preview",
"version": "1.0.0",
"prettier": "prettier-config-doly",
"description": "Development web with doly-cli.",
"scripts": {
"start": "doly dev",
"start:no-mock": "cross-env MOCK=none doly dev",
"build": "doly build",
"lint": "eslint --ext .jsx,.js src mocker",
"lint:prettier": "prettier-files check",
"prettier": "prettier-files write",
"prettier:check": "prettier-files check",
"lint:fix": "eslint --fix --ext .js,.jsx src mocker",
"lint-staged": "lint-staged",
"lint-staged:js": "eslint --ext .js,.jsx"
},
"repository": {
"type": "git",
"url": "https://github.com/doly-dev/doly-admin-template"
},
"author": "",
"license": "ISC",
"dependencies": {
"@ant-design/icons": "^4.0.3",
"antd": "^4.0.4",
"axios": "^0.21.1",
"classnames": "^2.2.6",
"core-js": "^3.6.4",
"path-to-regexp": "^2.4.0",
"rc-hooks": "^0.5.1",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-helmet-async": "^1.0.4",
"react-media": "^1.10.0",
"react-router-dom": "^5.1.2",
"regenerator-runtime": "^0.13.3",
"router-store": "^2.0.0",
"util-helpers": "^3.4.0"
},
"devDependencies": {
"babel-plugin-import": "^1.13.0",
"cross-env": "^5.2.0",
"doly-cli": "^0.8.1",
"doly-mocker-api": "^1.0.0",
"eslint": "^5.16.0",
"eslint-config-doly-react": "0.0.3-alpha.0",
"eslint-config-prettier": "^6.0.0",
"husky": "^2.0.0",
"lint-staged": "^9.0.2",
"prettier": "^1.19.1",
"prettier-config-doly": "0.0.1-alpha.0",
"prettier-files": "0.0.1-alpha.2"
},
"lint-staged": {
"**/*.{js,ts,tsx,jsx,less}": [
"prettier-files write",
"git add"
],
"**/*.{js,jsx}": "npm run lint-staged:js"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint-staged"
}
},
"prettierFiles": [
"src/**/*.js*",
"src/**/*.ts*",
"src/**/*.less",
"config/**/*.js*",
"scripts/**/*.js",
"doly.config.js",
"mocker/**/*.js"
]
}