-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.1 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
{
"name": "itowns-starter-webpack",
"version": "0.0.1",
"description": "",
"keywords": [],
"license": "",
"private": true,
"type": "module",
"sideEffects": false,
"scripts": {
"build": "webpack --env production",
"build-dev": "webpack",
"start": "webpack serve",
"start-prod": "webpack serve --env production",
"watch": "webpack --watch"
},
"dependencies": {
"buffer": "^6.0.3",
"itowns": "npm:itowns-demo-lidar@^2.42.1",
"lil-gui": "^0.19.1",
"proj4": "^2.9.2",
"three": "^0.159.0"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.22.20",
"@types/itowns": "^2.42.0",
"@types/three": "^0.161.2",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"babel-loader": "^9.1.3",
"eslint": "^8.56.0",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"webpack": "^5.90.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}