-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
53 lines (53 loc) · 1.67 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
{
"name": "parking-lot-map",
"version": "1.0.0",
"source": "index.html",
"type": "module",
"scripts": {
"start": "parcel",
"build": "rm -rf dist; parcel build --detailed-report",
"test": "playwright test",
"check": "tsc --noEmit",
"fmt": "prettier --write .",
"fix": "prettier --write index.html scripts/ src/ tests/; eslint --fix scripts/ src/ tests/",
"lint": "prettier --check . && eslint scripts/ src/ tests/",
"add-city": "ts-node-esm scripts/add-city.ts",
"update-city-boundaries": "ts-node-esm scripts/update-city-boundaries.ts",
"update-lots": "ts-node-esm scripts/update-lots.ts",
"serve-dist": "cd dist; http-server",
"test-dist": "PORT=8080 playwright test"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-regular-svg-icons": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@parcel/resolver-glob": "^2.10.3",
"choices.js": "^10.2.0",
"leaflet": "~1.9.3",
"ts-results": "^3.3.0"
},
"devDependencies": {
"@parcel/compressor-brotli": "^2.10.3",
"@parcel/compressor-gzip": "^2.10.3",
"@parcel/transformer-sass": "^2.10.3",
"@playwright/test": "^1.34.3",
"@types/geojson": "^7946.0.14",
"@types/leaflet": "^1.9.8",
"@types/node": "^20.11.20",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"eslint": "^8.37.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"http-server": "^14.1.1",
"parcel": "^2.10.3",
"playwright": "^1.34.3",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"targets": {
"default": {
"publicUrl": "./"
}
}
}