-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.32 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
{
"name": "crafty-canvas",
"version": "0.1.0",
"repository": "https://github.com/minwhoo/crafty_v2",
"description": "Visual Programming Interface for Crafty Web App",
"config": {
"buildDir": "./build",
"stageWidth": 1920,
"stageHeight": 1080
},
"scripts": {
"prestart": "npm install",
"start": "NODE_ENV=development webpack-dev-server --content-base ./build/ --hot --inline --host 0.0.0.0",
"webpack": "webpack -p --config ./webpack.config.js",
"build": "NODE_ENV=production npm run webpack",
"prewebpack": "npm run clean",
"clean": "rimraf $npm_package_config_buildDir && mkdir $npm_package_config_buildDir",
"lint": "eslint ./app/**/*.js",
"reactman": "reactman --config ./templates/reactman.config.js"
},
"dependencies": {
"pixi.js": "^3.0.7",
"tween.js": "^16.3.4"
},
"devDependencies": {
"babel-core": "^6.7.2",
"babel-eslint": "^5.0.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-runtime": "^6.6.1",
"brfs": "^1.4.3",
"eslint": "^2.4.0",
"file-loader": "^0.8.4",
"html-loader": "^0.4.3",
"json-loader": "^0.5.3",
"reactman": "^3.2.0",
"rimraf": "^2.4.3",
"transform-loader": "^0.2.3",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.11.0"
},
"engines": {
"node": ">=5.0.0"
}
}