-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.52 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
{
"name": "tunnetview",
"version": "1.0.0",
"description": "A webGL based viewer of underground 3DTiles point cloud data.",
"main": "index.js",
"scripts": {
"clean": "rm -f -r node_modules dist && rm -f package-lock.json",
"build": "webpack --config webpack.config.js",
"watch-build": "nodemon --watch src -e js --exec 'npm run build' ",
"start": "node ./bin/backEnd.js",
"start-test": "cross-env PORT=8099 SYNTHETIC_CAVE_URL='https://dataset-dl.liris.cnrs.fr/synthetic-cave-and-tunnel-systems/Cave/cave_sub_1_grid_size_x_1_grid_size_y_1_point_cloud-3dtiles/tileset-translated-to-lyon-cathedral.json' node ./bin/backEnd.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VCityTeam/TunNetView.git"
},
"keywords": [
"webGL",
"3DTiles",
"LAS",
"point",
"cloud"
],
"author": "VCity/LIRIS",
"license": "LGPL-2.1-only",
"bugs": {
"url": "https://github.com/VCityTeam/TunNetView/issues"
},
"homepage": "https://github.com/VCityTeam/TunNetView#readme",
"dependencies": {
"@ud-viz/point_cloud_visualizer": "4.3.0",
"@ud-viz/utils_browser": "4.3.0",
"@ud-viz/widget_3d_tiles": "4.3.0",
"@ud-viz/widget_bookmark": "4.3.0",
"@ud-viz/widget_layer_choice": "4.3.0",
"buffer": "^6.0.3",
"cross-env": "7.0.3",
"express": "4.19.2",
"string-replace-middleware": "1.0.2"
},
"devDependencies": {
"css-loader": "^6.8.1",
"nodemon": "^3.1.2",
"style-loader": "^3.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
}
}