-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 2.1 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
60
61
62
63
{
"name": "klimadash",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "./tools/mdCompileAll.sh; vite",
"build": "./tools/mdCompileAll.sh; vite build",
"webbuild": "./tools/mdCompileAll.sh; vite -c viteWeb.config.js build",
"test:accessible": "vitest run ./test/accessibility.test.js",
"serve:dist": "http-server dist -p 8080",
"test:e2e": "cypress run --browser firefox",
"test:e2e:open": "cypress open",
"quick": "vite",
"preview": "vite preview",
"copy:all": "npm run copy:components && npm run copy:core",
"copy:components": "cpx ./node_modules/@arcgis/map-components/dist/arcgis-map-components/assets/**/*.* ./public/esri",
"copy:core": "cpx ./node_modules/@arcgis/core/assets/**/*.* ./public/esri",
"copy:calcite": "cpx ./node_modules/@esri/calcite-components/dist/calcite/assets/**/*.* ./public/esri"
},
"dependencies": {
"@arcgis/coding-components": "^4.31.6",
"@arcgis/core": "^4.31.6",
"@arcgis/map-components": "^4.31.6",
"@fontsource/noto-color-emoji": "^5.0.28",
"@fontsource/noto-sans": "^5.0.22",
"@fontsource/roboto": "^5.0.13",
"@fontsource/roboto-condensed": "^5.1.0",
"@fontsource/source-sans-pro": "^5.0.8",
"axios": "^1.7.7",
"dflib": "github:digital-codes/dflib",
"html2canvas": "^1.4.1",
"leaflet": "^1.9.4",
"material-icons": "^1.13.12",
"papaparse": "^5.4.1",
"pinia": "^2.2.4",
"proj4": "^2.12.1",
"vue": "^3.5.12",
"vue-chartjs": "^5.3.1",
"vue-echarts": "^7.0.3",
"vue-i18n": "^10.0.4",
"vue-router": "^4.4.5",
"vuestic-ui": "^1.10.3"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/vue": "^8.1.0",
"@vitejs/plugin-vue": "^5.2.1",
"axe-core": "^4.10.2",
"cpx2": "^8.0.0",
"cypress": "^13.16.1",
"cypress-axe": "^1.5.0",
"isomorphic-dompurify": "^2.16.0",
"jsdom": "^25.0.1",
"marked": "^14.1.3",
"sass": "^1.80.3",
"sass-migrator": "^2.2.0",
"vite": "^5.4.9",
"vite-plugin-sitemap": "^0.7.1",
"vitest": "^2.1.8",
"vue-axe": "^3.1.2"
}
}