-
Notifications
You must be signed in to change notification settings - Fork 148
/
package.json
94 lines (94 loc) · 2.95 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "3d-bat",
"version": "24.3.2",
"author": "Walter Zimmer",
"license": "custom",
"homepage": "https://github.com/walzimmer/3d-bat/blob/master/README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/walzimmer/3d-bat.git"
},
"bugs": {
"url": "https://github.com/walzimmer/3d-bat/issues"
},
"private": true,
"description": "3D Bounding Box Annotation Toolbox",
"main": "index.js",
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile": "tsc && npm run copy-files",
"html:copy": "copyfiles -u 1 src/**.html public/",
"css:copy": "copyfiles -u 1 css/**.css public/",
"bundlejs": "browserify src/index.js -o public/bundle.js",
"magic": "nodemon --watch public/scripts -e js -x \"npm run bundlejs\"",
"html:watch": "nodemon --ignore node_modules --ignore public --watch src -e html,css -x \"npm run html:copy && npm run css:copy\"",
"build": "webpack --config ./webpack.config.js --mode production",
"start": "webpack serve --inline --open chromium-browser",
"start-server": "python3 -m src.server.app",
"copy-files": "copyfiles -u 1 src/**/*.js src/**/*.html src/**/*.css build/"
},
"devDependencies": {
"@types/dat.gui": "^0.7.7",
"@types/file-saver": "^2.0.1",
"@types/jquery": "^3.5.5",
"@types/node": "^14.14.35",
"@types/offscreencanvas": "^2019.6.4",
"@types/path-browserify": "^1.0.0",
"@types/raphael": "^2.3.3",
"@types/three": "^0.127.0",
"@types/uuid": "^8.3.4",
"@types/w2ui": "^1.4.32",
"@types/webpack": "^4.41.26",
"@webpack-cli/serve": "^1.3.0",
"base64-binary": "^0.1.2",
"concurrently": "^6.0.0",
"copyfiles": "^2.4.1",
"css-loader": "^5.1.3",
"dat.gui": "^0.7.7",
"html-webpack-plugin": "^4.5.2",
"jquery": "^3.6.0",
"keycode-js": "^3.1.0",
"nodemon": "^2.0.7",
"openfl": "^8.9.6",
"raphael": "^2.3.0",
"style-loader": "^0.23.1",
"three-orbitcontrols-ts": "git+https://git@github.com/nicolaspanel/three-orbitcontrols-ts.git",
"toast": "^0.2.10",
"ts-loader": "^6.2.2",
"tslint": "^6.1.3",
"uuid": "^8.3.2",
"w2ui": "^1.4.3",
"webgl": "^0.0.7",
"webpack": "^4.46.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"@tweenjs/tween.js": "^18.6.4",
"async-mutex": "^0.3.2",
"browserify": "^17.0.0",
"colormap": "^2.3.0",
"detector-webgl": "^2.0.0",
"file-loader": "^6.2.0",
"file-saver": "^2.0.0",
"jszip": "^2.0.0",
"material-design-icons": "^3.0.1",
"openfl": "^8.9.6",
"path-browserify": "^1.0.1",
"three": "^0.127.0",
"three-obj-loader": "^1.1.3",
"three-orbitcontrols-ts": "git+https://git@github.com/nicolaspanel/three-orbitcontrols-ts.git",
"typescript": "4.6.4"
},
"browser": {
"fs": false,
"path": false,
"os": false
}
}