forked from Hubs-Foundation/hubs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 4.06 KB
/
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
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "hubs",
"version": "0.0.1",
"description": "Duck-themed multi-user virtual spaces in WebVR.",
"main": "src/index.js",
"license": "MPL-2.0",
"homepage": "https://github.com/mozilla/hubs#readme",
"repository": {
"type": "git",
"url": "https://github.com/mozilla/hubs.git"
},
"bugs": {
"url": "https://github.com/mozilla/hubs/issues"
},
"scripts": {
"start": "webpack-dev-server --mode=development",
"build": "rimraf ./dist && webpack --mode=production",
"doc": "node ./scripts/doc/build.js",
"prettier": "prettier --write '*.js' 'src/**/*.js'",
"lint:js": "eslint '*.js' 'scripts/**/*.js' 'src/**/*.js'",
"lint:html": "htmlhint 'src/**/*.html' && node scripts/indent-linter.js 'src/**/*.html'",
"lint": "npm run lint:js && npm run lint:html",
"test": "npm run lint && npm run build"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.2",
"@fortawesome/free-solid-svg-icons": "^5.2.0",
"@fortawesome/react-fontawesome": "^0.1.0",
"aframe": "github:mozillareality/aframe#28d57fb2b2bdfc5ec410ceda28e76902325e39e8",
"aframe-billboard-component": "^1.0.0",
"aframe-inspector": "^0.8.3",
"aframe-motion-capture-components": "github:mozillareality/aframe-motion-capture-components#1ca616fa67b627e447b23b35a09da175d8387668",
"aframe-physics-extras": "github:mozillareality/aframe-physics-extras#bugfix/physics-collider-world",
"aframe-physics-system": "github:mozillareality/aframe-physics-system#ecc5c9c533d6d9c71f8d6453ab961ed074d44b1c",
"aframe-rounded": "^1.0.3",
"aframe-slice9-component": "^1.0.0",
"aframe-teleport-controls": "github:mozillareality/aframe-teleport-controls#hubs/master",
"animejs": "^2.2.0",
"classnames": "^2.2.5",
"copy-to-clipboard": "^3.0.8",
"deepmerge": "^2.1.1",
"detect-browser": "^2.1.0",
"event-target-shim": "^3.0.1",
"form-urlencoded": "^2.0.4",
"jsonschema": "^1.2.2",
"jszip": "^3.1.5",
"markdown-it": "^8.4.2",
"moving-average": "^1.0.0",
"naf-janus-adapter": "^0.13.2",
"networked-aframe": "github:mozillareality/networked-aframe#master",
"nipplejs": "github:mozillareality/nipplejs#mr-social-client/master",
"phoenix": "github:gfodor/phoenix-js#master",
"raven-js": "^3.20.1",
"react": "^16.1.1",
"react-dom": "^16.1.1",
"react-emoji-render": "^0.4.6",
"react-infinite-scroller": "^1.2.2",
"react-intl": "^2.4.0",
"react-linkify": "^0.2.2",
"react-youtube": "^7.8.0",
"screenfull": "^3.3.2",
"super-hands": "github:mozillareality/aframe-super-hands-component#feature/drawing",
"three": "github:mozillareality/three.js#4c144a360a073abb6c4a6fe7d1c03ba76b110573",
"three-pathfinding": "github:mozillareality/three-pathfinding#hubs/master",
"three-to-cannon": "1.3.0",
"uuid": "^3.2.1",
"webrtc-adapter": "^6.0.2"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "8",
"babel-loader": "^7.1.3",
"babel-plugin-react-intl": "^2.4.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-react-jsx-img-import": "^0.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"copy-webpack-plugin": "^4.5.1",
"cors": "^2.8.4",
"css-loader": "^1.0.0",
"dotenv": "^5.0.1",
"eslint": "^5.2.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.10.0",
"extract-text-webpack-plugin": "4.0.0-alpha.0",
"file-loader": "^1.1.10",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.1.0",
"htmlhint": "^0.9.13",
"node-sass": "^4.9.3",
"prettier": "^1.7.0",
"raw-loader": "^0.5.1",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.7",
"selfsigned": "^1.10.2",
"shelljs": "^0.8.1",
"style-loader": "^0.20.2",
"stylelint": "^9.4.0",
"stylelint-config-recommended-scss": "^3.2.0",
"stylelint-scss": "^3.2.0",
"url-loader": "^1.0.1",
"webpack": "^4.16.2",
"webpack-cli": "^2.0.9",
"webpack-dev-server": "^3.1.7",
"worker-loader": "^2.0.0"
}
}