-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 2.05 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "outdoormaps",
"version": "0.0.1",
"description": "Outdoor maps for mobile and desktop",
"private": true,
"license": "MIT",
"dependencies": {
"@mapbox/corslite": "0.0.7",
"@mapbox/polyline": "^1.1.1",
"@salomvary/leaflet-minirouter": "0.0.2",
"add-to-homescreen": "^3.2.6",
"browser-jsonp": "^1.0.1",
"fastclick": "^1.0.6",
"file-saver": "^1.3.8",
"jxon": "^2.0.0-beta.5",
"leaflet": "^1.7.1",
"leaflet-fullscreen": "^1.0.2",
"leaflet-plugins": "^3.3.2",
"os-leaflet": "^1.0.0",
"proj4leaflet": "^1.0.2"
},
"devDependencies": {
"@types/chai": "^4.2.13",
"@types/file-saver": "^2.0.1",
"@types/leaflet": "^1.5.19",
"@types/mocha": "^7.0.2",
"@types/proj4leaflet": "^1.0.5",
"@types/sinon": "^9.0.8",
"@types/sinon-chai": "^3.2.5",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"assetgraph-builder": "^8.1.0",
"chai": "^4.2.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"husky": "^4.3.0",
"imports-loader": "^0.8.0",
"jsdom": "^16.4.0",
"jsdom-global": "^3.0.2",
"lint-staged": "^10.5.1",
"mocha": "^7.2.0",
"mocha-webpack": "^2.0.0-beta.0",
"prettier": "^2.1.2",
"sinon": "^9.2.0",
"sinon-chai": "^3.5.0",
"ts-loader": "^6.2.2",
"typescript": "^3.9.7",
"uglify-js": "^3.11.2",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"scripts": {
"test": "mocha-webpack --require jsdom-global/register 'app/*-test.ts'",
"start": "webpack-dev-server",
"lint": "eslint --ext .js,.ts .",
"prettier:write": "prettier --write .",
"prettier:check": "prettier --check .",
"build": "buildProduction --precacheserviceworker --webpackconfig webpack.production.config.js --root . --outroot dist index.html"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix",
"*.{js,css,md,json,markdown,yml}": "prettier --write"
}
}