-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.19 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
{
"name": "glsl-homework",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"babel": "babel app/src -o app/build/scripts.js",
"build": "npm run build:js && npm run build:css",
"build:js": "browserify app/src/script/main.js -o app/build/bundle.js -t [ babelify --presets [ 'babel-preset-env' ] ] -g uglifyify ",
"build:css": "node-sass app/src/stylesheet/style.scss app/build/style.css",
"watch:js": "watchify app/src/script/main.js -o app/build/bundle.js -t [ babelify --presets [ 'babel-preset-env' ] ] -v",
"watch:css": "node-sass --watch app/src/stylesheet/style.scss app/build/style.css",
"start": "node ./server.js",
"watch": "npm run start & npm run watch:js & npm run watch:css",
"postinstall": "npm run build"
},
"author": "",
"license": "ISC",
"devDependencies": {
"node-sass": "^4.9.0",
"uglifyify": "^5.0.0"
},
"dependencies": {
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babelify": "^8.0.0",
"cannon": "^0.6.2",
"dat.gui": "^0.7.3",
"orbit-controls-es6": "^1.0.12",
"socket.io": "^2.2.0",
"three": "^0.92.0"
}
}