-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.66 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.66 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "calact-network-analysis-tool",
"version": "1.0.0",
"description": "calact-network-analysis-tool",
"author": "Ian Rees",
"private": true,
"type": "module",
"scripts": {
"check": "pnpm lint --fix && pnpm nuxt typecheck",
"build": "nuxt build",
"calact": "tsx src/cli/calact.ts",
"dev": "nuxt dev",
"generate": "nuxt generate",
"lint": "eslint .",
"start": "nuxt start",
"vendor:basemaps": "bash scripts/vendor-basemaps-assets.sh",
"test:watch": "vitest --watch",
"test": "vitest run --coverage",
"test:browser": "playwright test"
},
"dependencies": {
"@aitodotai/json-stringify-pretty-compact": "1.3.0",
"@apollo/client": "3.13.4",
"@interline-io/catenary": "0.11.0",
"@interline-io/tlv2-auth": "0.1.0-sha.ad5c03e",
"@mdi/font": "7.4.47",
"@nuxt/eslint": "1.16.0",
"@nuxt/eslint-config": "1.16.0",
"@protomaps/basemaps": "5.7.2",
"@turf/area": "7.3.4",
"@turf/bbox": "7.2.0",
"@types/big-json": "3.2.0",
"@types/node": "latest",
"@vue/apollo-composable": "4.2.2",
"@vueuse/core": "14.0.0",
"big-json": "3.2.0",
"bulma": "1.0.4",
"csv-stringify": "6.6.0",
"d3-scale": "4.0.2",
"d3-scale-chromatic": "3.1.0",
"date-fns": "4.1.0",
"eslint": "9.39.4",
"graphql": "16.10.0",
"graphql-tag": "2.12.6",
"maplibre-gl": "5.24.0",
"nuxt": "4.5.1",
"sass-embedded": "1.93.3",
"tsx": "4.20.3",
"typescript": "5.9.3",
"typescript-eslint": "8.46.3",
"vitest": "3.2.6",
"vue": "3.5.40",
"vue-tsc": "3.1.1"
},
"packageManager": "pnpm@10.32.1",
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/d3-scale": "4.0.9",
"@types/d3-scale-chromatic": "3.1.0",
"@vitest/coverage-v8": "3.2.6"
},
"pnpm": {
"onlyBuiltDependencies": [
"@oxc-parser/binding-darwin-x64",
"@parcel/watcher",
"esbuild",
"unrs-resolver",
"vue-demi"
],
"overrides": {
"@babel/core": ">=7.29.6 <8",
"brace-expansion@1": ">=1.1.16 <2",
"brace-expansion@2": ">=2.1.2 <3",
"brace-expansion@5": ">=5.0.8 <6",
"defu": ">=6.1.7 <7",
"esbuild": ">=0.28.1 <0.29",
"h3": "^1.15.11",
"immutable": ">=5.1.9 <6",
"js-yaml@4": ">=4.3.0 <5",
"launch-editor": ">=2.14.1 <3",
"lodash": ">=4.18.1 <5",
"picomatch@2": ">=2.3.2 <3",
"picomatch@4": ">=4.0.4 <5",
"postcss": ">=8.5.23 <9",
"protocol-buffers-schema": ">=3.6.1 <4",
"shell-quote": ">=1.10.0 <2",
"simple-git": ">=3.36.0 <4",
"svgo": ">=4.0.2 <5",
"tar": ">=7.5.22 <8",
"vite@7": ">=7.3.6 <8",
"ws": ">=8.21.1 <9"
}
}
}