forked from d70-t/gridlook
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.32 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.32 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
{
"name": "gridlook",
"version": "0.9.0",
"license": "MIT",
"scripts": {
"dev": "vite --port 3000",
"build": "vue-tsc -b && vite build",
"preview": "vite preview --port 5050",
"typecheck": "vue-tsc --noEmit",
"lint": "eslint . ",
"lint-ci": "eslint . --max-warnings 0",
"lint:fix": "eslint . --fix",
"prepare": "husky"
},
"lint-staged": {
"*.{js,ts,vue}": [
"eslint --fix",
"prettier --write"
],
"*.md": [
"prettier --write"
],
"!(*package-lock).json": [
"prettier --write"
]
},
"type": "module",
"dependencies": {
"@fortawesome/fontawesome-free": "^7.1.0",
"@hscmap/healpix": "^1.4.12",
"@primevue/themes": "^4.5.4",
"@vueuse/core": "^14.0.0",
"axios": "^1.13.6",
"bulma": "^1.0.4",
"canvas-txt": "^4.1.1",
"chart.js": "^4.5.1",
"chartjs-plugin-annotation": "^3.1.0",
"d3-delaunay": "^6.0.4",
"d3-geo": "^3.1.1",
"d3-geo-projection": "^4.0.0",
"dayjs": "^1.11.19",
"humanize-duration": "^3.33.2",
"lodash.debounce": "4.0.8",
"pinia": "^3.0.4",
"primevue": "^4.3.6",
"quick-lru": "^7.3.0",
"three": "^0.182",
"three-conic-polygon-geometry": "^2.1.2",
"three-geojson-geometry": "^2.1.1",
"vue": "^3.5",
"vue-json-pretty": "^2.6.0",
"vue-router": "^4.5",
"zarrita": "^0.6.1"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@types/d3-delaunay": "^6.0.4",
"@types/d3-geo": "^3.1.0",
"@types/geojson": "7946.0.16",
"@types/humanize-duration": "^3.27.4",
"@types/lodash.debounce": "^4.0.9",
"@types/node": "^18",
"@types/three": "0.178.1",
"@vitejs/plugin-vue": "^5",
"@vue/tsconfig": "0.7",
"eslint": "^9.39",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-boundaries": "^5.3.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-vue": "^10.6",
"globals": "^16.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.6.2",
"sass": "^1.89.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.50.0",
"vite": "^6",
"vue-tsc": "^3.1.8"
},
"engines": {
"node": ">=20.17.0"
}
}