-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
78 lines (78 loc) · 2.23 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
76
77
78
{
"name": "mst-react-router",
"description": "Keep your MobX State Tree state in sync with react-router",
"main": "dist/mst-react-router.js",
"types": "./types.d.ts",
"scripts": {
"lint": "eslint src __test__",
"test": "npm run lint && jest",
"test-watch": "jest --watch",
"clean": "rimraf dist -f",
"build:minified": "cross-env NODE_ENV=production MINIFY=true webpack --progress --colors",
"build:unminified": "cross-env NODE_ENV=production webpack --progress --colors",
"build": "npm run build:minified && npm run build:unminified",
"prepublish": "npm run clean && npm run lint && npm run test && npm run build",
"semantic-release": "semantic-release"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "./__test__/coverage",
"roots": [
"__test__"
]
},
"repository": {
"type": "git",
"url": "https://github.com/alisd23/mst-react-router.git"
},
"keywords": [
"history",
"react-router",
"routing",
"router",
"mobx",
"mobx-state-tree",
"state",
"store"
],
"author": "Ali Sheehan-Dare - @im_alisd",
"license": "MIT",
"bugs": {
"url": "https://github.com/alisd23/mst-react-router/issues"
},
"homepage": "https://github.com/alisd23/mst-react-router#readme",
"devDependencies": {
"@types/react-router": "^4.0.2",
"babel-eslint": "^6.1.2",
"babel-jest": "^19.0.0",
"babel-loader": "^6.2.5",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-1": "^6.13.0",
"cross-env": "^3.0.0",
"eslint": "^3.6.0",
"eslint-config-standard": "^6.0.1",
"eslint-config-standard-react": "^4.0.2",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-react": "^6.3.0",
"eslint-plugin-standard": "^2.0.0",
"history": "^4.7.2",
"jest": "^19.0.0",
"mobx": "^4.3.1",
"mobx-state-tree": "^3.11.0",
"react": "^15.0.0",
"react-router": "^4.0.0",
"rimraf": "^2.5.4",
"semantic-release": "^15.0.2",
"typescript": "^2.7.2",
"webpack": "^3.10.0",
"webpack-cli": "^2.0.10"
},
"peerDependencies": {
"mobx": "^4.3.1",
"mobx-state-tree": "^3.11.0",
"history": "^4.7.2"
},
"dependencies": {}
}