-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.56 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
48
49
50
51
52
53
{
"name": "charge-compare-client",
"version": "1.0.0",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"serve": "http-server dist/ -p 9000",
"dist": "yarn run dist:clean && yarn run dist:pack --mode=production && yarn run dist:copyAssets",
"distDev": "yarn run dist:clean && yarn run dist:pack --mode=development && yarn run dist:copyAssets",
"dist:clean": "rm -rf dist/ && mkdir dist",
"dist:pack": "yarn webpack --config webpack.config.js",
"dist:copyAssets": "cp -R assets/* dist",
"start": "yarn run dist && yarn run serve",
"startDev": "yarn run distDev && yarn run serve",
"test": "jest"
},
"dependencies": {
"@turf/along": "^6.5.0",
"@turf/length": "^6.5.0",
"babel-preset-env": "^1.7.0",
"dayjs": "^1.8.24",
"decode-google-map-polyline": "^1.0.1",
"haversine": "^1.1.1",
"jest": "^27.5.1",
"jwt-decode": "^3.1.2",
"jwt-encode": "^1.0.1",
"leaflet": "1.4.0",
"leaflet.awesome-markers": "2.0.5",
"leaflet.markercluster": "^1.5.0",
"lit": "^2.0.0-rc.2",
"mapbox-gl": "^1.0.0",
"mapbox-gl-leaflet": "^0.0.6",
"nouislider": "^15.5.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.3.1",
"babel-cli": "^6.26.0",
"css-loader": "^3.2.0",
"dotenv-webpack": "^1.7.0",
"html-webpack-plugin": "^3.2.0",
"http-server": "^0.11.1",
"style-loader": "^1.0.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"workbox-webpack-plugin": "^4.3.1"
}
}