-
Notifications
You must be signed in to change notification settings - Fork 343
/
package.json
58 lines (58 loc) · 1.77 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
{
"name": "root",
"private": true,
"scripts": {
"test": "jest --coverage",
"e2e": "cypress open",
"doc": "dumi dev",
"start": "concurrently \"lerna run watch --parallel\" \"cross-env APP_ROOT=example umi dev\"",
"example": "concurrently \"lerna run watch --parallel\" \"cross-env APP_ROOT=example umi dev\" \"imove -d\"",
"postinstall": "lerna init && lerna exec npm i && lerna exec npm run build && npm link packages/cli && lerna bootstrap",
"prepare": "husky install"
},
"jest": {
"projects": [
"config/cli.jest.config.js",
"config/core.jest.config.js",
"config/editor.jest.config.js",
"config/plugin.jest.config.js"
]
},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-json": "^4.0.3",
"@rollup/plugin-node-resolve": "^7.1.3",
"@rollup/plugin-strip": "^1.3.2",
"@types/jest": "^26.0.16",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^2.29.0",
"concurrently": "^5.3.0",
"cross-env": "^7.0.3",
"cypress": "^6.2.0",
"dumi": "^1.0.38",
"eslint": "^6.8.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"husky": "^7.0.1",
"lerna": "^3.22.1",
"less": "^3.12.2",
"lint-staged": "^11.0.1",
"lowdb": "^1.0.0",
"ora": "^4.1.1",
"postcss": "^8.2.1",
"prettier": "^2.2.1",
"rollup": "^2.6.1",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-size-snapshot": "^0.11.0",
"rollup-plugin-typescript": "^1.0.1",
"snazzy": "^9.0.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3",
"umi": "^3.3.3",
"watch": "^1.0.2"
},
"lint-staged": {
"packages/**/*.{ts,tsx,js,jsx}": "eslint --cache --fix"
}
}