-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.72 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
{
"name": "tetris",
"version": "1.0.0",
"description": "learning canvas with javascript",
"scripts": {
"start": "webpack-dev-server --progress --colors --hot --config ./webpack.dev.config.js",
"prod": "node server.js",
"postinstall": "webpack --config ./webpack.prod.config.js -p"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vatteh/Tetris.git"
},
"author": "Victor Atteh",
"license": "ISC",
"babel": {
"presets": [
"es2015",
"react",
"stage-2"
]
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"jsdom": "^9.12.0",
"react-addons-test-utils": "^15.4.2",
"react-hot-loader": "^1.3.1",
"webpack-dev-server": "^2.4.2"
},
"dependencies": {
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.1",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-2": "^6.22.0",
"bluebird": "3.5.0",
"chalk": "2.1.0",
"css-loader": "0.28.7",
"exports-loader": "^0.6.4",
"express": "4.15.4",
"imports-loader": "^0.7.1",
"material-ui": "^0.17.4",
"node-sass": "4.5.3",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-tap-event-plugin": "^2.0.1",
"sass-loader": "6.0.6",
"style-loader": "0.18.2",
"webpack": "^2.3.2",
"whatwg-fetch": "^2.0.3"
}
}