-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 2.01 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
66
67
{
"name": "ld37",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "budo src/main.js:bundle.js --live --port 9966 -- -d -e src/main.js",
"start:editor": "budo src/editor.js:editor.bundle.js --live --port 9977 -- -d -e src/editor.js",
"prebuild": "mkdirp build",
"build": "npm run build:js && npm run build:css && npm run build:html && npm run copy:all",
"build:js": "browserify -d -e src/main.js | uglifyjs -cm > build/bundle.min.js",
"build:editor:js": "browserify -d -e src/editor.js | uglifyjs -cm > build/bundle.min.js",
"build:css": "cleancss css/main.css -o build/main.min.css",
"build:html": "htmlprocessor index.html -o build/index.html",
"copy:all": "npm run copy:assets && npm run copy:phaser",
"copy:assets": "ncp assets build/assets",
"copy:phaser": "ncp node_modules/phaser/build/custom/phaser-arcade-physics.min.js build/phaser-arcade-physics.min.js",
"deploy": "npm run build && gh-pages -d build"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"lodash": "^4.17.2",
"phaser": "^2.6.2",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-redux": "^4.4.6",
"redux": "^3.6.0",
"redux-actions": "^1.1.0",
"redux-store-observer": "^1.0.0",
"reselect": "^2.5.4",
"shortid": "^2.2.6"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015",
"stage-0",
"react"
]
}
]
]
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.9.0",
"babel-eslint": "^6.1.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babelify": "^7.3.0",
"browserify": "^13.0.1",
"budo": "^8.3.0",
"clean-css": "^3.4.17",
"eslint": "^3.12.0",
"eslint-loader": "^1.6.1",
"gh-pages": "^0.12.0",
"htmlprocessor": "^0.2.3",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"uglify-js": "^2.6.2"
}
}