-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.41 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
{
"name": "threedee",
"version": "1.0.0",
"description": "hackweek q3 2017 - 3d visualization",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run cp-html & npm run cp-js & npm run build-client & npm run server",
"build-client": "watchify src/js/client/index.js -o dist/bundle.js -t [ babelify --presets [ es2015 ] ] & livereload dist/bundle.js",
"server": "node src/js/server/index.js",
"cp-static": "mkdir dist & cp index.html dist/ & cp *.jpg dist/",
"cp-js": "cp node_modules/underscore/underscore-min.js dist & cp node_modules/three/build/three.js dist & cp node_modules/threex.domevents/threex.domevents.js dist & cp node_modules/jquery/dist/jquery.min.js dist",
"cp-css": "cp -r node_modules/components-bootstrap/fonts dist & mkdir -p dist/vendor && cp node_modules/components-bootstrap/css/bootstrap.css dist/vendor/"
},
"keywords": [
"3d",
"visualization",
"three.js"
],
"author": "buchowski",
"license": "ISC",
"dependencies": {
"components-bootstrap": "^3.3.7",
"express": "^4.15.3",
"jquery": "^3.2.1",
"three": "^0.86.0",
"three-orbit-controls": "^82.1.0",
"threex.domevents": "^1.0.1",
"underscore": "^1.8.3"
},
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^14.4.0",
"livereload": "^0.6.2",
"watchify": "^3.9.0"
}
}