-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
37 lines (37 loc) · 986 Bytes
/
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
{
"name": "webvr360",
"version": "1.0.0",
"description": "It's like Tim Berners-Lee meets YouTube + Vrideo + anything else.",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run prod",
"prod": "NODE_ENVIRONMENT='production' node server",
"dev": "NODE_ENVIRONMENT='development' nodemon server",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "https://github.com/cvan/webvr360.git"
},
"author": "Chris Van",
"bugs": {
"url": "https://github.com/cvan/webvr360/issues"
},
"homepage": "https://github.com/cvan/webvr360",
"license": "MIT",
"dependencies": {
"body-parser": "^1.13.2",
"cors": "^2.7.1",
"es6-promise": "^2.3.0",
"express": "^4.13.1",
"express-keenio": "^0.4.5",
"lodash": "^3.10.0",
"morgan": "^1.6.1",
"request": "^2.60.0",
"ytdl-core": "^0.5.1"
},
"devDependencies": {
"release-it": "^0.1.3"
}
}