-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
73 lines (73 loc) · 1.94 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
{
"name": "umi-plugin-page-creator",
"version": "1.7.3",
"description": "",
"authors": {
"name": "chenjie",
"email": "[email protected]"
},
"repository": "/umi-plugin-page-creator",
"main": "lib/index.js",
"scripts": {
"start": "cross-env UMI_UI=1 APP_ROOT=example umi dev",
"watch": "father-build --watch",
"build": "rm -rf dist lib && cross-env NODE_ENV=prod father-build",
"ui:build": "ui-build",
"prettier": "prettier --parser=typescript --write '{src,ui}/**/*.ts?(x)'",
"test": "umi-test",
"test:coverage": "umi-test --coverage",
"test:update": "umi-test --updateSnapshot"
},
"lint-staged": {
"*.ts?(x)": [
"git add"
]
},
"devDependencies": {
"@testing-library/react": "^9.4.0",
"@testing-library/react-hooks": "^3.2.1",
"@types/classnames": "^2.2.10",
"@types/codemirror": "^0.0.95",
"@types/faker": "^4.1.11",
"@types/jest": "^25.1.3",
"@types/node": "^13.7.7",
"@umijs/fabric": "^2.0.8",
"@umijs/preset-ui": "^2.1.13",
"@umijs/test": "^3.0.10",
"@umijs/test-utils": "^1.0.0",
"@umijs/ui-builder": "^0.0.5",
"@umijs/ui-types": "^2.0.0-beta.2",
"antd": "^4.2.0",
"body-parser": "^1.18.2",
"classnames": "^2.2.6",
"codemirror": "^5.54.0",
"copy-to-clipboard": "^3.3.1",
"cross-env": "^6.0.3",
"express": "^4.15.3",
"faker": "^4.1.0",
"father-build": "^1.17.2",
"immer": "^6.0.5",
"lerna": "^3.20.2",
"lint-staged": "^10.0.8",
"npm-run-all": "^4.1.5",
"pify": "^5.0.0",
"puppeteer": "^1.20.0",
"query-string": "^6.11.1",
"react": "^16.12.0",
"react-codemirror2": "^7.2.0",
"react-dom": "^16.12.0",
"react-test-renderer": "^16.9.0",
"test-umi-plugin": "^0.1.0",
"typescript": "^3.9.2",
"umi": "^3.1.0",
"use-immer": "^0.4.0",
"yorkie": "^2.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"files": [
"dist",
"lib"
]
}