-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.5 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
{
"name": "react-pong",
"version": "1.0.0",
"description": "Overengineered react clone of Pong",
"main": "index.js",
"repository": "https://github.com/nicmosc/react-pong.git",
"author": "nicmosc <[email protected]>",
"license": "MIT",
"homepage": "https://nicmosc.github.io/react-pong",
"scripts": {
"clean": "rimraf docs",
"build": "npm run clean && webpack --progress --config webpack.config.js",
"start": "",
"dev": "webpack-dev-server --progress --config webpack.dev.config.js",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"engines": {
"node": "7.x"
},
"devDependencies": {
"babel-core": "^6.24.0",
"babel-loader": "^6.4.0",
"babel-preset-latest": "^6.24.1",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"css-loader": "^0.27.3",
"cssnano": "^3.10.0",
"extract-text-webpack-plugin": "^2.1.2",
"file-loader": "^0.10.1",
"html-webpack-plugin": "^2.28.0",
"less": "^2.7.2",
"less-loader": "^3.0.0",
"postcss-loader": "^1.3.3",
"style-loader": "^0.14.0",
"url-loader": "^0.5.8",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.2"
},
"dependencies": {
"babel-polyfill": "^6.23.0",
"konva": "^1.6.1",
"normalize.css": "^5.0.0",
"normalizr": "^3.2.2",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-hot-loader": "next",
"react-konva": "^1.1.3",
"react-redux": "^5.0.3",
"redux": "^3.6.0",
"rimraf": "^2.6.1"
}
}