forked from mkbiltek/FruitNinja-1
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.02 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
{
"name": "FruitNinja",
"version": "1.0.0",
"repository": "https://github.com/luviiit/FruitNinja",
"description": "Web clone for famous a Android game, FruitNinja, built in PixiJS",
"config": {
"buildDir": "./build"
},
"scripts": {
"start": "npm run build && webpack-dev-server --content-base ./build/ --hot --inline",
"webpack": "webpack -p",
"build": "npm run webpack && cp -r assets build/",
"lint": "eslint app/gameplay.js"
},
"dependencies": {
"pixi.js": "^3.0.11"
},
"devDependencies": {
"babel-core": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.6.0",
"babel-runtime": "^6.6.1",
"eslint": "^3.9.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.5.0",
"file-loader": "^0.9.0",
"html-loader": "^0.4.3",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.15.0"
},
"engines": {
"node": ">=5.0.0"
}
}