-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
59 lines (59 loc) · 1.92 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
{
"name": "back-of-your-hand",
"private": true,
"version": "0.0.0",
"type": "module",
"browserslist": "> 0.25%, not dead",
"scripts": {
"build": "vite build",
"dev": "vite",
"format": "prettier --write .",
"lint-all": "npm run format && eslint --fix . && npm run svelte-check && node ./build/licenseHeader/lint.js --all --write",
"lint-all--no-fix": "npm run svelte-check && node ./build/licenseHeader/lint.js --all && eslint . && prettier --check .",
"prepare": "husky",
"preview": "vite preview",
"svelte-check": "svelte-check --compiler-warnings \"css-unused-selector:ignore\" --tsconfig ./tsconfig.json && tsc -p tsconfig.node.json",
"test": "echo 'No tests yet, but I'm open to it'",
"visualize": "npx vite-bundle-visualizer"
},
"dependencies": {
"@sentry/browser": "^6.19.7",
"@sentry/tracing": "^6.19.7",
"@turf/center": "^6.0.1",
"@turf/destination": "^7.1.0",
"@types/leaflet": "^1.5.19",
"@types/lodash": "^4.14.182",
"@types/turf": "^3.5.32",
"browserslist-to-esbuild": "^2.1.1",
"git-commit-id": "^2.0.1",
"leaflet": "^1.7.1",
"lodash": "^4.17.15",
"point-in-polygon": "^1.1.0",
"turf-featurecollection": "^1.0.1",
"turf-point": "^2.0.1",
"wrangler": "^0.0.17"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^3.1.1",
"@tsconfig/svelte": "^5.0.4",
"@types/eslint": "^8.56.10",
"@types/point-in-polygon": "^1.1.5",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.43.0",
"glob": "^11.0.0",
"husky": "^9.1.3",
"ignore": "^5.3.1",
"lint-staged": "^15.2.7",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.6",
"rollup": "^4.19.1",
"svelte": "^4.2.18",
"svelte-check": "^3.8.4",
"tslib": "^2.6.3",
"typescript": "^5.2.2",
"typescript-eslint": "^7.16.1",
"vite": "^5.3.4"
}
}