-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.86 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": "final-project-jammakansiang",
"version": "1.0.1",
"description": "Final Project Grafika Komputer-B",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile:app": "browserifyinc --cachefile build/browserify-cache.json js/app.js -o build/bundle.js --debug -v",
"compile:multi": "browserifyinc --cachefile build/browserify-cache-multi.json js/appmulti.js -o build/bundle-multi.js --debug -v",
"compile:master": "browserifyinc --cachefile build/browserify-cache-master.json js/master.js -o build/bundle-master.js --debug -v",
"build:app": "browserify js/app.js -o build/bundle.js --debug -v",
"build:multi":"browserify js/appmulti.js -o build/bundle-multi.js --debug -v",
"build:master": "browserify js/master.js -o build/bundle-master.js --debug -v",
"build": "npm --silent run build:app & npm --silent run build:multi & npm --silent run build:master",
"dev": "nodemon --exec \"npm --silent start\" --ignore build",
"start": "npm run compile:app & npm run compile:master & npm run compile:multi & node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/grafkom-b-if-its-2019/final-project-jammakansiang.git"
},
"keywords": [
"final",
"project"
],
"author": "Jam makan siang",
"license": "ISC",
"bugs": {
"url": "https://github.com/grafkom-b-if-its-2019/final-project-jammakansiang/issues"
},
"homepage": "https://github.com/grafkom-b-if-its-2019/final-project-jammakansiang#readme",
"dependencies": {
"browserify": "^16.5.0",
"browserify-incremental": "^3.1.1",
"express": "^4.17.1",
"nodemon": "^2.0.2",
"physijs-webpack": "^0.1.4",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"three": "^0.110.0",
"three-orbitcontrols": "^2.110.3"
},
"devDependencies": {
"webworkify": "^1.5.0"
}
}