-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.8 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.8 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
63
64
65
66
67
{
"name": "@dx-groups/arthur",
"version": "1.1.1",
"main": "index.js",
"repository": "https://github.com/dx-groups/arthur.git",
"author": "dx-groups",
"license": "MIT",
"scripts": {
"build": "rimraf lib && babel src --out-dir lib",
"pub": "npm publish --access public --registry=https://registry.npmjs.org",
"lint": "eslint ./src",
"lint-fix": "eslint --fix ./src"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.26.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-react-app": "^2.1.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-flowtype": "^2.46.3",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.8.2",
"extract-text-webpack-plugin": "^3.0.2",
"pre-commit": "^1.2.2",
"rimraf": "^2.6.2"
},
"pre-commit": [
"lint"
],
"dependencies": {
"@dx-groups/utils": "^1.0.0",
"flatten": "^1.0.2",
"history": "^4.7.2",
"invariant": "^2.2.4",
"is-plain-object": "^2.0.4",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.5",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-router-redux": "^5.0.0-alpha.9",
"redux": "^3.7.2",
"redux-actions": "^2.3.2",
"redux-promise": "^0.5.3",
"redux-thunk": "^2.2.0",
"warning": "^3.0.0"
},
"files": [
"lib",
"index.js",
"history.js",
"redux.js",
"router.js",
"routerDom.js",
"routerRedux.js"
]
}