-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.27 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.27 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
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "placemaker",
"version": "0.0.1",
"description": "PlaceMaker combines the most valuable components of key web-based, self-guideed VR tours to offer a cost-effective method of connecting residents with their neighrborhoods, and highlighting that neighborhood's amenities in innovative and engaging ways. ",
"main": "app.js",
"scripts": {
"lite": "lite-server -c bs-config.json",
"gulp": "gulp",
"dev": "npm-run-all -p gulp lite"
},
"keywords": [
"webvr",
"vr",
"ar"
],
"author": "PlaceMakers",
"license": "ISC",
"dependencies": {
"aframe": "^0.7.0",
"aframe-fit-texture-component": "^0.2.3",
"aframe-slice9-component": "^1.0.0",
"babel-cli": "^6.22.2",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"npm-run-all": "^1.0.0"
},
"devDependencies": {
"browserify": "^14.3.0",
"babelify": "^7.3.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-watch": "^4.3.11",
"lite-server": "^2.2.2",
"run-sequence": "^1.2.2",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015",
"stage-2"
]
}
]
]
}
}