-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 994 Bytes
/
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
{
"name": "BlobbyVolleyWebGL",
"version": "0.0.1",
"main": "index.js",
"repository": {
"url": "git@bitbucket.org:svnfqt/blobbyvolleywebgl.git",
"type": "git"
},
"license": "MIT",
"dependencies": {
"howler": "^2.0.1",
"lodash": "^4.16.4",
"p2": "^0.7.1",
"screenfull": "^3.0.2",
"stats.js": "^0.16.0",
"three": "0.66.97",
"three-window-resize": "^1.0.4"
},
"devDependencies": {
"auto-reload-brunch": "^2.7.1",
"babel-brunch": "^6.0.6",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.16.0",
"brunch": "^2.8.2",
"eslint": "^3.8.1",
"javascript-brunch": "^2.0.0",
"less-brunch": "^2.7.1",
"lint-staged": "^3.2.0",
"pre-commit": "^1.1.3"
},
"scripts": {
"lint-staged": "lint-staged",
"start": "brunch watch --server",
"prod": "rm -rf public/ && brunch build --production"
},
"lint-staged": {
"*.js": "eslint"
},
"pre-commit": [
"lint-staged"
]
}