forked from ovidiuch/flatris
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.4 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
{
"name": "flatris",
"version": "0.3.0",
"description": "Web-based Tetris clone in React",
"repository": {
"type": "git",
"url": "https://github.com/skidding/flatris.git"
},
"dependencies": {
"jquery": "^2.1.3",
"lodash": "^3.10.1",
"react": "^0.14.8",
"react-animation-loop": "^0.1.2",
"react-component-tree": "^0.4.0",
"react-dom": "^0.14.8"
},
"devDependencies": {
"babel-core": "^5.8.34",
"babel-eslint": "^4.1.5",
"babel-loader": "^5.3.3",
"babel-plugin-react-transform": "^1.1.1",
"css-loader": "^0.23.0",
"eslint": "^1.9.0",
"eslint-plugin-react": "^3.8.0",
"express": "^4.13.3",
"extract-text-webpack-plugin": "^0.5.0",
"less": "^2.5.0",
"less-loader": "^2.2.0",
"postcss-loader": "^0.8.0",
"postcss-nested": "^1.0.0",
"react-component-playground": "^0.4.1",
"react-querystring-router": "^0.4.0",
"react-transform-catch-errors": "^1.0.0",
"react-transform-hmr": "^1.0.1",
"redbox-react": "1.1.1",
"style-loader": "^0.13.0",
"webpack": "^1.12.4",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.5.0",
"yargs": "^3.29.0"
},
"main": "build/flatris.js",
"scripts": {
"lint": "eslint .",
"start": "node devServer.js",
"playground": "node devServer.js --env playground",
"build": "NODE_ENV=production webpack --config webpack.config.prod.js"
}
}