-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.02 KB
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
{
"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": {
"itowns": "^2.46.0",
"proj4": "^2.19.10",
"three": "^0.174.0"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.10.0",
"@types/itowns": "^2.42.2",
"@types/three": "^0.174.0",
"@typescript-eslint/eslint-plugin": "^8.48.0",
"@typescript-eslint/parser": "^8.48.0",
"babel-loader": "^10.0.0",
"eslint": "^8.57.0",
"ts-loader": "^9.5.4",
"typescript": "^5.9.3",
"webpack": "^5.103.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
}
}