-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.51 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
{
"name": "lineage-js",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"start": "node_modules/.bin/webpack serve --config configs/development.config.js --port 8080 --host 0.0.0.0",
"build-dev": "rm -rf bin/ && node_modules/.bin/webpack --config configs/development.config.js"
},
"keywords": [],
"author": "Ratchet",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/plugin-transform-typescript": "^7.16.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/dat.gui": "^0.7.7",
"@types/node-forge": "^1.3.0",
"@types/pako": "^2.0.0",
"@types/three": "^0.143.0",
"@types/uuid": "^8.3.4",
"babel-loader": "^8.2.4",
"buffer": "^6.0.3",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.7.1",
"node-sass": "^7.0.1",
"path-browserify": "^1.0.1",
"raw-loader": "^4.0.2",
"sass-loader": "^12.6.0",
"style-loader": "^3.3.1",
"webpack": "^5.72.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.1"
},
"dependencies": {
"@dimforge/rapier3d": "^0.9.0",
"dat.gui": "^0.7.9",
"gmp-wasm": "^1.1.0",
"node-forge": "^1.3.1",
"pako": "^2.0.4",
"three": "^0.143.0",
"uuid": "^8.3.2"
}
}