-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.19 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.19 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
38
39
40
41
42
43
44
45
46
47
{
"name": "surface-studio",
"version": "1.0.0",
"description": "A GeoJSON based web application to manipulate and compare surfaces",
"main": "index.js",
"scripts": {
"dev": "webpack serve --config ./webpack/webpack.dev.ts",
"build": "webpack build --config ./webpack/webpack.prod.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@mapbox/mapbox-gl-draw": "^1.4.3",
"@turf/turf": "^7.1.0",
"@types/mapbox__mapbox-gl-draw": "^1.4.8",
"firebase": "^10.14.0",
"mapbox-gl": "^3.7.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/geojson": "^7946.0.14",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"css-loader": "^7.1.2",
"html-webpack-plugin": "^5.6.0",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
}
}