-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 1.92 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": "stand-admin-dva",
"version": "1.0.8",
"description": "StandAdmin with Dva",
"scripts": {
"start": "dumi dev",
"docs:build": "dumi build",
"docs:deploy": "gh-pages -d docs-dist",
"build": "father-build",
"deploy": "npm run docs:build && npm run docs:deploy",
"release": "npm run build && npm publish",
"prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
"test": "umi-test",
"test:coverage": "umi-test --coverage",
"pub": "npm run build && npm publish"
},
"main": "dist/index.esm.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"dependencies": {
"dva": "^2.6.0-beta.20",
"dva-loading": "^3.0.22",
"history": "^4.7.2",
"stand-admin-base": "^1.0.0"
},
"peerDependencies": {
"antd": "^4.9.2",
"react": "^16.8 || ^17",
"react-dom": "^16.8 || ^17"
},
"devDependencies": {
"@types/react": "^16.8.4",
"@types/react-dom": "^16.8.4",
"antd": "^4.9.2",
"babel-plugin-import": "^1.13.0",
"dumi": "^1.0.10",
"eslint": "^7.9.0",
"eslint-config-airbnb": "^18.0.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-react-hooks": "^4.2.0",
"father-build": "^1.17.2",
"lint-staged": "^10.0.7",
"prettier": "^1.19.1",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"umi": "^3.3.2",
"yorkie": "^2.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StandAdmin/stand-admin-dva.git"
},
"keywords": [
"antd",
"admin",
"crud"
],
"author": "Andrew Zhang",
"license": "MIT",
"bugs": {
"url": "https://github.com/StandAdmin/stand-admin-dva/issues"
},
"homepage": "https://github.com/StandAdmin/stand-admin-dva#readme"
}