This repository was archived by the owner on Jul 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·56 lines (56 loc) · 1.41 KB
/
package.json
File metadata and controls
executable file
·56 lines (56 loc) · 1.41 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
{
"name": "Name",
"version": "1.0.0",
"description": "Description",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --host 0.0.0.0 --mode development --https -d",
"http": "webpack-dev-server --host 0.0.0.0 --mode development -d",
"build": "webpack --mode production",
"lint": "eslint src",
"brow": "browserify src/index.js bundle.browserify.js",
"deploy": "gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MozillaReality/foxr-run"
},
"author": "author",
"license": "license",
"bugs": {
"url": "https://github.com/MozillaReality/foxr-run/issues"
},
"homepage": "https://github.com/MozillaReality/foxr-run#readme",
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
]
}
]
]
},
"dependencies": {
"three": "^0.116.1"
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-preset-es2015": "^6.24.1",
"babelify": "^10.0.0",
"browserify": "^16.5.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.1",
"prettier": "^1.19.1",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"webpack-node-externals": "^1.7.2"
}
}