-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.75 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
{
"name": "breakout",
"version": "0.0.1",
"description": "A ridiculous idea. A video game implemented in React.",
"keywords": [
"react",
"alt",
"breakout",
"video game"
],
"homepage": "https://eschiebel.github.io/",
"author": {
"name": "Ed Schiebel",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/eschiebel/breakout"
},
"main": "index.html",
"scripts": {
"test": "echo \"Working on it...\" && exit 1",
"build": "webpack -d --config ./webpack.config.js",
"buildprod": "webpack --config ./webpack.config-prod.js"
},
"dependencies": {
"alt": "^0.18.4",
"alt-utils": "^1.0.0",
"babel-polyfill": "^6.6.1",
"babel-runtime": "^6.6.1",
"classnames": "^2.1.1",
"immutable": "^3.7.2",
"normalize.css": "^3.0.3",
"react": "^15.0.2",
"react-addons-css-transition-group": "^15.0.2",
"react-dom": "^15.0.2"
},
"devDependencies": {
"babel-core": "^6.6.5",
"babel-loader": "^6.2.4",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-es2015-loose": "^7.0.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"chai": "^3.5.0",
"css-loader": "^0.10.1",
"exports-loader": "^0.6.3",
"file-loader": "^0.8.5",
"grunt": "^1.0.1",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-exec": "^0.4.7",
"grunt-mocha-test": "^0.12.7",
"jsx-loader": "^0.13.1",
"mocha": "^2.5.3",
"react-addons-test-utils": "^15.0.1",
"style-loader": "^0.10.2",
"url-loader": "^0.5.6",
"webpack": "^1.8.4"
}
}