-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.15 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
{
"name": "tetris",
"version": "1.0.0",
"description": "Tetris in javascript.",
"main": "app/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"prod": "webpack -p --progress --config ./webpack.prod.config.js",
"watch": "webpack -w",
"start": "webpack -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stephenpoole/tetris.git"
},
"author": "Stephen Poole",
"license": "MIT",
"bugs": {
"url": "https://github.com/stephenpoole/tetris/issues"
},
"dependencies": {
"bluebird": "^3.5.0",
"lodash": "^4.17.4",
"phaser": "^2.6.2",
"phaser-shim": "^2.4.8",
"tone": "^0.11.11",
"uuid": "^3.1.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"expose-loader": "^0.7.3",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.30.1",
"json-loader": "^0.5.7",
"script-loader": "^0.7.0",
"strip-loader": "^0.1.2",
"webpack": "^1.15.0"
},
"homepage": "https://github.com/stephenpoole/tetris#readme"
}