forked from cjjenkinson/orbit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
91 lines (91 loc) · 2.36 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
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "react-boilerplate",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --progress --colors --config ./webpack.config.js",
"build": "./node_modules/.bin/webpack",
"test": "jest",
"lint": "./node_modules/.bin/eslint ./src",
"precommit": "lint-staged"
},
"keywords": [],
"author": "",
"license": "MIT",
"babel": {
"presets": [
"env",
"react",
"stage-0"
]
},
"lint-staged": {
"*.js": [
"git add"
]
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^0.28.10",
"eslint": "^4.16.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.1",
"file-loader": "^1.1.11",
"husky": "^0.14.3",
"jest": "^22.1.4",
"lint-staged": "^7.0.0",
"postcss-loader": "^2.1.1",
"prettier": "^1.11.1",
"react-hot-loader": "^3.1.3",
"style-loader": "^0.20.2",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.11.1"
},
"dependencies": {
"@vx/group": "0.0.153",
"@vx/mock-data": "0.0.153",
"@vx/point": "0.0.153",
"@vx/scale": "0.0.153",
"@vx/shape": "0.0.158",
"d3-array": "^1.2.1",
"antd": "^3.3.1",
"babel-polyfill": "^6.26.0",
"base-64": "^0.1.0",
"cookies-js": "^1.2.3",
"dotenv": "^5.0.1",
"history": "^4.7.2",
"lodash": "^4.17.5",
"moment": "^2.21.0",
"normalizr": "^3.2.4",
"postcss-cssnext": "^3.1.0",
"postcss-import": "^11.1.0",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-addons-css-transition-group": "^15.6.2",
"react-dom": "^16.2.0",
"react-modal": "^3.3.2",
"react-redux": "^5.0.7",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-router-redux": "^5.0.0-alpha.9",
"redux": "^3.7.2",
"redux-devtools": "^3.4.1",
"redux-devtools-extension": "^2.13.2",
"redux-form": "^7.3.0",
"redux-logger": "^3.0.6",
"redux-modal": "^1.7.0",
"redux-thunk": "^2.2.0",
"reselect": "^3.0.1",
"seamless-immutable": "^7.1.3"
}
}