This repository has been archived by the owner on Feb 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.64 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
{
"name": "umi-plugin-mobx",
"version": "0.1.5",
"description": "Use mobx-state-tree gracefully with umi.",
"main": "lib/index.js",
"repository": "https://github.com/HeskeyBaozi/umi-plugin-mobx",
"author": "HeskeyBaozi<[email protected]>",
"license": "MIT",
"files": [
"lib",
"README_CN.md"
],
"scripts": {
"dev": "cross-env NODE_ENV=development rollup --config ./rollup.config.js --watch",
"build": "npm run clean && cross-env NODE_ENV=production rollup --config ./rollup.config.js",
"test": "cross-env TS_NODE_PROJECT=src/__test__/tsconfig.json mocha --require espower-typescript/guess src/__test__/**/*.spec.ts",
"lint": "tslint --project ./tsconfig.json",
"clean": "rimraf lib"
},
"directories": {
"test": "src/__test__"
},
"devDependencies": {
"@types/globby": "^8.0.0",
"@types/lodash.uniq": "^4.5.4",
"@types/mocha": "^5.2.5",
"@types/node": "^10.7.1",
"@types/pluralize": "^0.0.29",
"@types/react": "^16.4.11",
"@types/react-router-dom": "^4.3.0",
"@types/webpack": "^4.4.10",
"cross-env": "^5.2.0",
"espower-typescript": "^9.0.0",
"mocha": "^5.2.0",
"power-assert": "^1.6.0",
"rimraf": "^2.6.2",
"rollup": "^0.64.1",
"rollup-plugin-copy-assets": "^1.0.0",
"rollup-plugin-typescript2": "^0.16.1",
"tslint": "^5.11.0",
"tslint-react": "^3.6.0",
"typescript": "^3.0.1"
},
"dependencies": {
"globby": "^8.0.1",
"lodash.uniq": "^4.5.0",
"mobx": "^5.0.4",
"mobx-react": "^5.2.5",
"mobx-state-tree": "^3.2.3",
"pluralize": "^7.0.0"
},
"peerDependencies": {
"react": "^16.4.2",
"umi": "^1.3.18"
}
}