-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
46 lines (46 loc) · 1.04 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
{
"name": "death_gl",
"version": "0.0.1",
"description": "",
"main": "src/index.js",
"scripts": {
"start": "concurrently \"nodemon server.js\" \"watchify src/index.js -o public/js/bundle.js -v\"",
"build": "browserify src/index.js | uglifyjs -mc warnings=false > public/js/bundle.min.js",
"test": "npm run build"
},
"author": "Or Fleisher <contact@orfleisher.com>",
"license": "MIT",
"dependencies": {
"ejs": "^2.5.7",
"event-emitter-es6": "^1.1.5",
"express": "^4.16.2",
"gsap": "^1.20.3",
"http": "0.0.0",
"socket.io": "^2.0.4",
"three": "^0.89.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babelify": "^8.0.0",
"browserify": "^15.2.0",
"concurrently": "^3.5.1",
"glslify": "^6.1.0",
"nodemon": "^1.14.12",
"uglify-js": "^3.3.9",
"watchify": "^3.10.0"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"env"
]
}
],
"glslify"
]
}
}