-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.7 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
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "dams",
"version": "0.0.0",
"scripts": {
"dev": "run-s generate dev-only",
"dev-only": "vite",
"build": "run-s generate build-only",
"preview": "vite preview --port 4173",
"test:unit": "vitest --coverage",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint": "eslint . --ext .vue,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"prepare": "husky install",
"generate": "pnpm graphql-code-generator --config ./codegen.ts",
"check-dependencies": "dependency-cruiser --exclude \"^node_modules\" \"src/**/*.vue\"",
"check-unused-components": "check-unused-comp -i **components/filters/matchers/** ./src"
},
"dependencies": {
"@apollo/client": "^3.11.10",
"@floating-ui/vue": "^1.1.5",
"@graphql-codegen/cli": "^4.0.1",
"@rollup/plugin-node-resolve": "15.3.0",
"@sentry/browser": "^6.19.7",
"@sentry/integrations": "^6.19.7",
"@sentry/tracing": "^6.19.7",
"@sentry/vue": "^6.19.7",
"@tailwindcss/forms": "^0.5.9",
"@types/dropzone": "^5.7.8",
"@types/openseadragon": "^3.0.10",
"@types/tailwindcss": "^2.2.4",
"@vee-validate/rules": "4.13.0",
"@vue-leaflet/vue-leaflet": "^0.10.1",
"@vue/apollo-composable": "^4.2.1",
"@vueform/multiselect": "^2.6.10",
"@vueform/slider": "^2.1.10",
"@vueuse/head": "^0.6.0",
"apollo-upload-client": "^17.0.0",
"chart.js": "^4.4.6",
"chartjs-adapter-date-fns": "^3.0.0",
"chartjs-plugin-datasource-prometheus": "^2.3.0",
"date-fns": "^2.30.0",
"dotenv": "^16.4.5",
"dropzone": "^5.9.3",
"graphql": "16.6.0",
"graphql-tag": "^2.12.6",
"leaflet": "^1.9.4",
"luxon": "3.5.0",
"mirador": "3.3.0",
"ol": "^10.2.1",
"openseadragon": "^5.0.0",
"pdfjs-dist": "^2.16.105",
"session-vue-3-oidc-library": "0.1.55",
"tify": "^0.28.1",
"tiny-cookie": "^2.5.1",
"ts-debounce": "^3.0.0",
"url-slug": "^3.0.6",
"vee-validate": "4.14.7",
"vue": "3.5.13",
"vue-i18n": "10.0.4",
"vue-markdown-render": "^2.2.1",
"vue-router": "4.4.5",
"vue-unicons": "^3.3.1",
"vue3-openlayers": "^11.2.1"
},
"devDependencies": {
"@graphql-codegen/add": "^4.0.1",
"@graphql-codegen/cli": "^4.0.1",
"@graphql-codegen/typed-document-node": "^4.0.1",
"@graphql-codegen/typescript": "^4.1.1",
"@graphql-codegen/typescript-operations": "^4.3.1",
"@intlify/vite-plugin-vue-i18n": "^6.0.3",
"@rushstack/eslint-patch": "^1.10.4",
"@types/apollo-upload-client": "^17.0.5",
"@types/jsdom": "^20.0.1",
"@types/leaflet": "^1.9.14",
"@types/luxon": "^3.4.2",
"@types/node": "^16.18.119",
"@vitejs/plugin-vue": "^3.2.0",
"@vitest/coverage-v8": "2.1.2",
"@vue/eslint-config-prettier": "9.0.0",
"@vue/eslint-config-typescript": "^11.0.3",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.1.3",
"autoprefixer": "^10.4.20",
"c8": "^7.14.0",
"dependency-cruiser": "^12.12.2",
"eslint": "8.57.1",
"eslint-plugin-vue": "9.31.0",
"graphql-codegen": "^0.4.0",
"husky": "^8.0.3",
"jsdom": "^20.0.3",
"lint-staged": "15.2.10",
"lodash.isequal": "^4.5.0",
"mitt": "^3.0.1",
"npm-run-all": "^4.1.5",
"papaparse": "^5.4.1",
"postcss": "^8.4.49",
"postcss-import": "^15.1.0",
"prettier": "^3.2.5",
"tailwindcss": "^3.4.15",
"ts-node": "10.9.2",
"tsc-files": "^1.1.4",
"typescript": "5.6.3",
"vite": "5.4.11",
"vite-plugin-compression": "^0.5.1",
"vitest": "2.1.5",
"vue-tsc": "2.1.10",
"vue-unused-components-checker": "^1.1.2"
},
"publishConfig": {
"registry": "https://nexus.inuits.io/repository/npm-private"
}
}