-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.94 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.94 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "meetup-vr",
"version": "1.0.0",
"description": "An example of using A-Frame with React and Redux.",
"dependencies": {
"aframe": "^0.5.0",
"aframe-react": "3.5.0",
"babel-polyfill": "^6.23.0",
"classnames": "2.2.5",
"fetch-jsonp": "1.0.6",
"immutable": "^3.8.1",
"node-sass": "^4.5.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.3",
"redux": "^3.6.0",
"redux-logger": "^2.8.2",
"sass-loader": "^6.0.3"
},
"scripts": {
"build": "webpack",
"preghpages": "npm run build && rm -rf gh-pages && cp -r src gh-pages && cp index.html build/bundle.js gh-pages",
"ghpages": "npm run preghpages && ghpages -p gh-pages",
"gh-pages": "npm run ghpages",
"test": "echo \"Error: no test specified\" && exit 1",
"serve": "cd src && python -m SimpleHTTPServer 8081",
"serve-js": "webpack-dev-server --content-base src --progress --watch --history-api-fallback --inline --hot --port 8082"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rspace/aframe-meetup-example.git"
},
"keywords": [
"aframe",
"react",
"vr",
"boilerplate",
"a-frame",
"mozvr",
"webvr"
],
"author": "Casper Fabricius <me@casperfabricius.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rspace/aframe-meetup-example/issues"
},
"homepage": "https://github.com/rspace/aframe-meetup-example#readme",
"devDependencies": {
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"babel-runtime": "^6.23.0",
"css-loader": "^0.27.3",
"ghpages": "0.0.10",
"json-loader": "^0.5.4",
"redux-devtools": "^3.3.2",
"redux-devtools-dock-monitor": "^1.1.1",
"redux-devtools-log-monitor": "^1.2.0",
"style-loader": "^0.14.1",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.2"
}
}