-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.34 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 3.34 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
95
96
97
98
99
100
101
102
{
"name": "udata-front-kit",
"version": "0.4.0",
"private": true,
"type": "module",
"packageManager": "pnpm@11.3.0+sha512.2c403d6594527287672b1f7056343a1f7c3634036a67ffabfcc2b3d7595d843768f8787148d1b57cf7956c90606bbd192857c363af19e96d2d0ec9ec5741d215",
"engines": {
"node": ">= 22.0.0",
"npm": "please-use-pnpm",
"yarn": "please-use-pnpm",
"pnpm": ">= 10.0.0"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"test:single": "vitest run",
"test:e2e": "node scripts/cypress-e2e.mjs",
"test:e2e:open": "node scripts/cypress-e2e.mjs --open",
"test:e2e:for_production_build": "node scripts/cypress-e2e.mjs --preview",
"lint": "eslint . --max-warnings 0",
"hint": "tsc --project tsconfig.vitest.json",
"format": "prettier --write src/",
"prepare": "husky",
"generate-robots-txt": "node scripts/generate-robots-txt.mjs",
"type-check": "pnpm run type-check:app && pnpm run type-check:cypress",
"type-check:app": "vue-tsc --noEmit --project tsconfig.app.json",
"type-check:cypress": "tsc --noEmit --project cypress/tsconfig.json"
},
"dependencies": {
"@datagouv/components-next": "1.0.2-dev.90",
"@gouvfr/dsfr": "~1.14.3",
"@gouvfr/dsfr-chart": "^2.0.4",
"@gouvminint/vue-dsfr": "^8.15.0",
"@json2csv/plainjs": "^7.0.6",
"@sentry/vite-plugin": "^4.3.0",
"@sentry/vue": "^10.17.0",
"@unhead/vue": "^1.11.18",
"@vueform/multiselect": "^2.6.11",
"@vueform/slider": "^2.1.10",
"@vueuse/core": "^12.4.0",
"@vueuse/integrations": "^12.4.0",
"axios": "^1.15.2",
"chart.js": "^4.5.1",
"dompurify": "^3.4.0",
"maplibre-gl": "^5.3.0",
"marked": "^15.0.6",
"marked-gfm-heading-id": "^4.1.3",
"pinia": "^2.3.0",
"string-strip-html": "^13.4.8",
"vite-plugin-html": "^3.2.2",
"vue": "^3.5.27",
"vue-loading-overlay": "^6.0.6",
"vue-matomo": "^4.2.0",
"vue-router": "^4.6.4",
"vue3-text-clamp": "^0.1.2",
"xmlbuilder2": "^3.1.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.26.5",
"@eslint/js": "^9.18.0",
"@testing-library/vue": "^8.1.0",
"@tsconfig/node20": "^20.1.4",
"@types/hast": "^3.0.4",
"@types/js-yaml": "^4.0.9",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.10.6",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/eslint-config-prettier": "^10.1.0",
"@vue/eslint-config-typescript": "^14.3.0",
"@vue/tsconfig": "^0.7.0",
"axios-mock-adapter": "^2.1.0",
"cypress": "^15.14.2",
"cypress-axe": "^1.6.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-vue": "^9.32.0",
"happy-dom": "^20.8.9",
"husky": "^9.1.7",
"js-yaml": "^4.1.1",
"lint-staged": "^15.3.0",
"mimicry-js": "^1.3.0",
"openapi-types": "^12.1.3",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"start-server-and-test": "^2.0.8",
"typescript": "~5.7.3",
"typescript-eslint": "^8.20.0",
"unplugin-auto-import": "^19.0.0",
"unplugin-yaml": "^1.3.0",
"vite": "^6.4.2",
"vite-plugin-dynamic-import": "^1.6.0",
"vite-plugin-vue-devtools": "^7.7.0",
"vitest": "^3.0.9",
"vue-tsc": "^2.2.0"
},
"lint-staged": {
"*.{js,ts,mjs,mts,vue,yml,yaml,json,md,css}": "prettier --write"
}
}