-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.08 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
{
"name": "elm-snake",
"version": "0.0.0",
"description": "",
"scripts": {
"start": "webpack-dashboard -- webpack -w --config webpack.config.dev.js",
"build": "webpack --config webpack.config.prod.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rkrupinski/elm-snake.git"
},
"author": "Rafał Krupiński",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.1.8",
"babel-preset-react": "^6.22.0",
"clean-webpack-plugin": "^0.1.14",
"elm-webpack-loader": "^4.2.0",
"html-webpack-plugin": "^2.26.0",
"sw-precache-webpack-plugin": "^0.9.0",
"webpack": "^2.2.1",
"webpack-dashboard": "^0.2.1",
"webpack-merge": "^2.3.1"
},
"dependencies": {
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-elm-components": "^1.0.1",
"react-redux": "^5.0.2",
"recompose": "^0.22.0",
"redux": "^3.6.0",
"redux-saga": "^0.14.3",
"regenerator-runtime": "^0.10.3"
}
}