-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.46 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": "battle-royale",
"version": "0.0.0",
"license": "UNLICENSED",
"scripts": {
"prestart": "npm install",
"start": "NODE_ENV=development npm run dev",
"test": "npm run lint",
"prebuild": "npm test && npm run clean",
"build": "NODE_ENV=production webpack --progress --colors",
"clean": "rimraf ./build && echo Cleaned up ./build",
"predev": "open http://localhost:8080",
"dev": "webpack-dev-server --progress --colors --inline --hot",
"lint": "eslint ./src && echo No linting errors."
},
"devDependencies": {
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"css-loader": "^0.23.1",
"eslint": "^2.10.0",
"eslint-config-airbnb-base": "^3.0.1",
"eslint-plugin-import": "^1.8.0",
"extract-text-webpack-plugin": "^1.0.1",
"html-webpack-plugin": "^2.17.0",
"node-sass": "^3.7.0",
"rimraf": "^2.5.2",
"sass-loader": "^3.2.0",
"style-loader": "^0.13.1",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"three": "^0.76.1",
"three-orbit-controls": "^72.0.0",
"tween.js": "^16.3.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/artisologic/battle-royale.git"
},
"author": {
"name": "Benoît Grélard",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/artisologic/battle-royale/issues"
},
"homepage": "https://github.com/artisologic/battle-royale#readme"
}