This repository has been archived by the owner on Jul 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
59 lines (59 loc) · 1.53 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
{
"name": "machine",
"version": "0.1.0",
"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/fernandojsg/machine.git"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
]
}
]
]
},
"author": "Fernando Serrano <[email protected]> (http://fernandojsg.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/fernandojsg/machine/issues"
},
"homepage": "https://github.com/fernandojsg/machine#readme",
"dependencies": {
"ecsy": "^0.2.6",
"ecsy-three": "^0.0.4",
"three": "^0.117.1",
"webxr-polyfill": "^2.0.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"
}
}