-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.06 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.06 KB
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
{
"//1": "describes your app and its dependencies",
"//2": "https://docs.npmjs.com/files/package.json",
"//3": "updating this file will download and update your packages",
"name": "my-glitch-app",
"version": "0.0.1",
"description": "What am I about?",
"main": "server.js",
"scripts": {
"start": "npm run build && node server.js",
"dev": "budo public/client.js:bundle.js -v -d public --live",
"build": "browserify public/client.js -t [ babelify --presets [ es2015 ] ] | uglifyjs -c -m > public/bundle.js",
"publish": "surge -p ./public --domain elastic-card.surge.sh"
},
"dependencies": {
"express": "^4.15.3",
"three": "^0.87.0",
"three-orbit-viewer": "^69.3.1"
},
"devDependencies": {
"babel-preset-es2015": "^6.22.0",
"babelify": "^7.3.0",
"browserify": "^14.0.0",
"budo": "^10.0.4",
"uglify-js": "^3.0.26"
},
"repository": {
"url": "https://glitch.com/edit/#!/welcome-project"
},
"engines": {
"node": "8.x"
},
"license": "MIT",
"keywords": [
"node",
"glitch",
"express"
]
}