-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.44 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
{
"name": "pr7",
"version": "1.0.0",
"main": "index.js",
"author": "Ivan Efremov",
"license": "MIT",
"scripts": {
"start": "webpack-dev-server",
"build": "rm -rf ./dist && webpack",
"test": "jest"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-plugin-closure-elimination": "^1.1.14",
"babel-plugin-date-fns": "^0.1.0",
"babel-plugin-ramda": "^1.1.6",
"babel-plugin-transform-class-properties": "^6.19.0",
"babel-plugin-transform-function-bind": "^6.8.0",
"babel-plugin-transform-node-env-inline": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-plugin-transform-react-inline-elements": "^6.8.0",
"babel-polyfill": "^6.20.0",
"babel-preset-env": "^1.1.4",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babili": "^0.0.9",
"babili-webpack-plugin": "^0.0.7",
"html-webpack-plugin": "^2.24.1",
"jest": "^18.0.0",
"optimize-js-plugin": "^0.0.4",
"react-hot-loader": "next",
"react-test-renderer": "^15.4.1",
"webpack": "beta",
"webpack-dev-server": "beta",
"webpack-merge": "^2.0.0"
},
"dependencies": {
"bluebird": "^3.4.7",
"date-fns": "^1.21.1",
"immutable": "^3.8.1",
"ramda": "^0.22.1",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-redux": "^5.0.1",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0"
}
}