-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
55 lines (55 loc) · 1.81 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
{
"name": "atip",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"fmt": "npx prettier --write *.html tests/* src/*",
"test": "npx playwright test",
"check": "svelte-check --tsconfig ./tsconfig.json",
"setup-govuk": "sass src/style/main.sass src/style/main.css; rm -rf public/assets; mkdir -p public/assets; cp -R node_modules/govuk-frontend/dist/govuk/assets/ public/",
"generate-random-schemes": "npx ts-node --project tsconfig_tsnode.json --esm src/scripts/random_schemes.ts"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@playwright/test": "^1.41.2",
"@sveltejs/vite-plugin-svelte": "^2.4.2",
"@tsconfig/svelte": "^4.0.1",
"@types/geojson": "^7946.0.14",
"@types/js-cookie": "^3.0.6",
"@types/node": "^20.11.17",
"@types/uuid": "^9.0.8",
"playwright": "^1.41.2",
"prettier": "^3.2.5",
"prettier-plugin-svelte": "^3.1.2",
"sass": "^1.70.0",
"svelte-check": "^3.6.4",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"vite": "^4.1.1",
"vite-plugin-wasm-pack": "0.1.11",
"vite-tsconfig-paths": "^4.2.0"
},
"dependencies": {
"@maptiler/geocoding-control": "1.2.3",
"@turf/area": "^7.0.0",
"@turf/bbox": "^7.0.0",
"@turf/boolean-contains": "^7.0.0",
"@turf/boolean-point-in-polygon": "^7.0.0",
"@turf/helpers": "^7.0.0",
"@turf/length": "^7.0.0",
"@turf/random": "^7.0.0",
"govuk-frontend": "^5.1.0",
"govuk-svelte": "github:acteng/govuk-svelte",
"humanize-string": "^3.0.0",
"js-cookie": "^3.0.5",
"maplibre-gl": "^4.0.2",
"scheme-sketcher-lib": "github:acteng/scheme-sketcher-lib",
"svelte": "^4.2.10",
"svelte-maplibre": "^0.9.7",
"uuid": "^9.0.1"
}
}