-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
52 lines (52 loc) · 1.6 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
{
"name": "era-engine",
"version": "0.0.11",
"description": "ERA Engine - A wrapper around Three.js to assist development.",
"main": "build/era.js",
"scripts": {
"build": "rollup -c rollup_config.js",
"build-examples": "npx webpack --config webpack.config.js",
"build-all": "npm run-script build && npm run-script build-examples",
"start": "http-server ./ -p=5000",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rogerscg/era-engine.git"
},
"author": "rogerscg",
"license": "MIT",
"bugs": {
"url": "https://github.com/rogerscg/era-engine/issues"
},
"homepage": "https://github.com/rogerscg/era-engine#readme",
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"babel-preset-es2015-rollup": "^3.0.0",
"comlink-loader": "^2.0.0",
"express": "^4.17.1",
"rollup": "^1.25.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-web-worker-loader": "^1.3.1",
"webpack": "^4.44.0",
"webpack-cli": "^3.3.12",
"worker-loader": "^2.0.0",
"worker-plugin": "^4.0.3"
},
"dependencies": {
"@babel/plugin-transform-runtime": "^7.10.5",
"@babel/runtime": "^7.10.5",
"@surma/rollup-plugin-off-main-thread": "^1.4.1",
"@tweenjs/tween.js": "^18.6.0",
"cannon-es": "^0.15.1",
"comlink": "^4.3.0",
"dat.gui": "^0.7.7",
"noisejs": "^2.1.0",
"simplex-noise": "^2.4.0",
"socket.io-client": "^2.3.0",
"three": "^0.118.3"
}
}