-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.53 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (108 loc) · 3.53 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
103
104
105
106
107
108
{
"name": "nuxt-app",
"private": true,
"type": "module",
"packageManager": "pnpm@10.23.0",
"engines": {
"node": ">= 24.0.0",
"pnpm": ">= 10.0.0",
"npm": "use-pnpm-instead",
"yarn": "use-pnpm-instead"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint-staged": "lint-staged",
"build": "NODE_OPTIONS=--max-old-space-size=8192 nuxt build",
"typecheck": "NODE_OPTIONS=--max-old-space-size=8192 nuxt typecheck",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"prepare": "husky",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"test:e2e": "playwright test",
"test:e2e:update-screenshots": "playwright test tests/homepage.spec.ts tests/edito/pages-editor.spec.ts --update-snapshots",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:show-report": "bash -c 'rm -rf /tmp/playwright && mkdir /tmp/playwright && mv \"$1\" /tmp/playwright/report.zip && unzip -d /tmp/playwright /tmp/playwright/report.zip && pnpm exec playwright show-report /tmp/playwright' _"
},
"lint-staged": {
"*.{js,ts,vue,jsx,tsx}": "eslint --fix"
},
"dependencies": {
"@datagouv/components-next": "workspace:*",
"@e965/xlsx": "^0.20.3",
"@floating-ui/vue": "^2.0.1",
"@gouvfr/dsfr": "^1.15.0",
"@headlessui/vue": "^1.7.23",
"@milkdown/core": "^7.21.3",
"@milkdown/ctx": "^7.21.3",
"@milkdown/plugin-clipboard": "^7.21.3",
"@milkdown/plugin-history": "^7.21.3",
"@milkdown/plugin-listener": "^7.21.3",
"@milkdown/plugin-tooltip": "^7.21.3",
"@milkdown/preset-commonmark": "^7.21.3",
"@milkdown/preset-gfm": "^7.21.3",
"@milkdown/prose": "^7.21.3",
"@milkdown/transformer": "^7.21.3",
"@milkdown/vue": "^7.21.3",
"@nuxt/image": "^2.0.0",
"@nuxtjs/sitemap": "^8.2.2",
"@prosemirror-adapter/vue": "^0.5.3",
"@remixicon/vue": "^4.9.0",
"@rollup/pluginutils": "^5.4.0",
"@sentry/nuxt": "^10.66.0",
"@tailwindcss/vite": "^4.3.3",
"@takumi-rs/core": "^2.3.0",
"@types/papaparse": "^5.5.2",
"@types/tabulator-tables": "^6.3.6",
"@vueuse/core": "^14.3.0",
"@vueuse/integrations": "^14.3.0",
"@vueuse/nuxt": "^14.3.0",
"@vueuse/router": "^14.3.0",
"dompurify": "^3.4.13",
"gray-matter": "^4.0.3",
"leaflet": "^1.9.4",
"lodash-es": "^4.18.1",
"nuxt": "~4.4.8",
"nuxt-og-image": "^6.7.2",
"ofetch": "^1.5.1",
"papaparse": "^5.5.4",
"smol-toml": "^1.7.0",
"sortablejs": "^1.15.7",
"tabulator-tables": "^6.5.2",
"uqr": "^0.1.3",
"uuid": "^14.0.1",
"vue-content-loader": "^2.0.1",
"vue-router": "^5.2.0",
"vue3-text-clamp": "^0.1.2",
"yaml": "^2.9.0"
},
"devDependencies": {
"@axe-core/playwright": "^4.12.1",
"@nuxt/eslint": "^1.16.0",
"@nuxt/fonts": "^0.14.0",
"@parcel/watcher": "^2.5.6",
"@playwright/test": "^1.61.1",
"@tailwindcss/oxide": "^4.3.3",
"@tailwindcss/typography": "^0.5.20",
"@types/geojson": "^7946.0.16",
"@types/leaflet": "^1.9.21",
"@types/lodash-es": "^4.17.12",
"@types/node": "^24.13.3",
"@types/sortablejs": "^1.15.9",
"@vitejs/plugin-vue": "^6.0.8",
"husky": "^9.1.7",
"lightningcss": "^1.32.0",
"lint-staged": "^17.1.0",
"otplib": "^13.4.1",
"sass-embedded": "^1.100.0",
"tailwindcss": "^4.3.3",
"typescript": "^5.9.3",
"vitest": "^4.1.10",
"vue-component-type-helpers": "^3.3.7",
"vue-tsc": "^3.3.7"
}
}