-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
32 lines (32 loc) · 1.13 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
{
"name": "matrix",
"version": "1.1.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "./node_modules/.bin/webpack-dev-server --config ./webpack.config.js",
"prepare": "if [ -d ./resources ]; then rm -r ./resources; fi; cp -r ./node_modules/@here/harp-map-theme/resources .",
"upload": "./node_modules/.bin/webpack && surge --domain harpbox.surge.sh"
},
"devDependencies": {
"ts-loader": "^6.2.0",
"typescript": "^3.6.4",
"webpack": "^4.41.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.8.2",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@here/harp-datasource-protocol": "latest",
"@here/harp-font-resources": "latest",
"@here/harp-geojson-datasource": "latest",
"@here/harp-geoutils": "latest",
"@here/harp-map-controls": "latest",
"@here/harp-map-theme": "latest",
"@here/harp-mapview": "latest",
"@here/harp-mapview-decoder": "latest",
"@here/harp-omv-datasource": "latest",
"harp-standard-theme": "latest",
"three": "latest"
}
}