-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 984 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 984 Bytes
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": "cabbage-blaster",
"version": "1.0.0",
"description": "Sick VR game",
"main": "webpack.config.js",
"scripts": {
"build": "cross-env NODE_ENV=production webpack",
"start": "node server/index.js",
"start-dev": "webpack-dev-server --host 0.0.0.0 --progress --colors --hot -d --open --inline",
"postinstall": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VRFPS/VR-FPS-Engine.git"
},
"keywords": [],
"author": "Bogdan Polovko, Damon Ye",
"license": "MIT",
"bugs": {
"url": "https://github.com/VRFPS/VR-FPS-Engine/issues"
},
"engines": {
"node": "7.1.0"
},
"homepage": "https://github.com/VRFPS/VR-FPS-Engine#readme",
"devDependencies": {
"webpack-dev-server": "^1.16.1"
},
"dependencies": {
"aframe": "^0.4.1",
"aframe-extras": "^3.2.2",
"aframe-randomizer-components": "^3.0.1",
"cross-env": "^2.0.1",
"express": "^4.15.0",
"webpack": "^1.13.2"
}
}