-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
61 lines (61 loc) · 2.27 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
{
"name": "Threejs-Portal",
"description": "Experiment with WebGL, Three.js, OffscreenCanvas with Web Worker, stencil buffer and an event-driven architecture using RxJs with a DI lib.",
"license": "",
"scripts": {
"start": "export NODE_OPTIONS=--openssl-legacy-provider && webpack-dev-server --progress --content-base \"./\" --open-page \"index.html\"",
"build": "export NODE_OPTIONS=--openssl-legacy-provider && webpack --mode production",
"test": "mocha -r ts-node/register -r tsconfig-paths/register src/**/*.spec.ts",
"lint": "eslint . --ext .ts"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/plugin-transform-for-of": "^7.10.4",
"@babel/preset-env": "^7.11.0",
"@types/chai": "^4.2.12",
"@types/copy-webpack-plugin": "^6.2.0",
"@types/lodash": "^4.14.159",
"@types/mini-css-extract-plugin": "^1.2.2",
"@types/mocha": "^8.0.2",
"@types/node-fetch": "^2.5.7",
"@types/optimize-css-assets-webpack-plugin": "^5.0.2",
"@types/rx": "^4.1.2",
"@types/terser-webpack-plugin": "^5.0.2",
"@types/three": "^0.129.1",
"@types/tween.js": "^18.5.1",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"babel-loader": "^8.1.0",
"babel-plugin-loop-optimizer": "^1.4.1",
"chai": "^4.2.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "6.1.1",
"css-loader": "^4.2.1",
"eslint": "^7.12.1",
"file-loader": "^6.0.0",
"gltf-webpack-loader": "^1.0.6",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.3.0",
"mini-css-extract-plugin": "^0.10.0",
"mocha": "^8.1.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"path": "^0.12.7",
"replace-in-file-webpack-plugin": "^1.0.6",
"rxjs": "^6.6.2",
"style-loader": "^1.2.1",
"terser-webpack-plugin": "^4.1.0",
"threads-plugin": "^1.3.2",
"ts-loader": "^8.0.2",
"ts-node": "^8.10.2",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.3.4",
"typescript-ioc": "3.2.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"threads": "1.6.3",
"three": "0.129.0"
}
}