-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.69 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.69 KB
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
{
"name": "easy-react-common-lib",
"version": "1.0.0",
"description": "React Project Common Lib",
"scripts": {
"start": "npm run build",
"debug": "SCRIPT_TAG=debug easy build test",
"build": "SCRIPT_TAG=min easy build prod",
"release": "easy clean && npm run debug && npm run build",
"debug:polyfill": "SCRIPT_TAG=polyfill.debug easy build test",
"build:polyfill": "SCRIPT_TAG=polyfill.min easy build prod",
"release:polyfill": "easy clean && npm run debug:polyfill && npm run build:polyfill",
"lint": "eslint .",
"fix": "eslint --fix .",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"dependencies": {
"mobx": "^5.14.0",
"mobx-react": "^6.1.3",
"react": "^16.8.2",
"react-dom": "^16.8.2",
"react-mobx": "^0.0.4",
"react-redux": "^6.0.1",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"core-js": "^3.4.5"
},
"devDependencies": {
"@babel/preset-react": "^7.7.4",
"@easy-team/easywebpack-cli": "^4.0.0",
"@easy-team/easywebpack-js": "4.0.0",
"chai": "^4.1.1",
"codecov": "^3.0.0",
"conventional-changelog-cli": "^1.3.5",
"cross-env": "^5.0.5",
"eslint": "^4.5.0",
"eslint-config-eslint": "^4.0.0",
"mocha": "^3.5.0",
"nyc": "^11.1.0",
"react-hot-loader": "^4.12.18"
},
"keywords": [
"react",
"mobx",
"redux"
],
"nyc": {
"exclude": [
"**/*.spec.js",
"test/*.test.js"
]
},
"ci": {
"version": "8, 10, 12"
},
"repository": {
"type": "git",
"url": "git+http://github.com/easy-team/easy-react-common-lib.git"
},
"homepage": "http://github.com/easy-team/easy-react-common-lib#readme",
"author": "hubcarl@126.com"
}