-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.68 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 3.68 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"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"
},
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"@scarf/scarf",
"@tailwindcss/oxide",
"cypress",
"esbuild",
"husky",
"sharp"
],
"ignoredBuiltDependencies": [
"@sentry/cli",
"core-js",
"unrs-resolver",
"vue-demi"
],
"patchedDependencies": {
"@nuxt/nitro-server": "patches/@nuxt__nitro-server.patch"
}
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint-staged": "lint-staged",
"build": "nuxt build",
"typecheck": "nuxt typecheck",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"prepare": "husky",
"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:*",
"@floating-ui/vue": "^1.1.11",
"@gouvfr/dsfr": "^1.14.4",
"@headlessui/vue": "^1.7.23",
"@milkdown/core": "^7.19.0",
"@milkdown/ctx": "^7.19.0",
"@milkdown/plugin-clipboard": "^7.19.0",
"@milkdown/plugin-history": "^7.19.0",
"@milkdown/plugin-listener": "^7.19.0",
"@milkdown/plugin-tooltip": "^7.19.0",
"@milkdown/preset-commonmark": "^7.19.0",
"@milkdown/preset-gfm": "^7.19.0",
"@milkdown/prose": "^7.19.0",
"@milkdown/transformer": "^7.19.0",
"@milkdown/vue": "^7.19.0",
"@nuxt/image": "^2.0.0",
"@nuxtjs/sitemap": "^8.0.8",
"@prosemirror-adapter/vue": "^0.4.6",
"@remixicon/vue": "^4.9.0",
"@rollup/pluginutils": "^5.3.0",
"@sentry/nuxt": "^10.45.0",
"@tailwindcss/vite": "^4.2.2",
"@takumi-rs/core": "^0.73.1",
"@types/papaparse": "^5.5.2",
"@types/tabulator-tables": "^6.3.1",
"@vueuse/core": "^14.2.1",
"@vueuse/integrations": "^14.2.1",
"@vueuse/nuxt": "^14.2.1",
"@vueuse/router": "^14.2.1",
"gray-matter": "^4.0.3",
"leaflet": "^1.9.4",
"lodash-es": "^4.17.23",
"nuxt": "~4.2.0",
"nuxt-og-image": "^6.0.6",
"ofetch": "^1.5.1",
"papaparse": "^5.5.3",
"sharp": "^0.34.5",
"smol-toml": "^1.6.0",
"sortablejs": "^1.15.7",
"tabulator-tables": "^6.4.0",
"uqr": "^0.1.2",
"uuid": "^13.0.0",
"vue-content-loader": "^2.0.1",
"vue-router": "^5.0.4",
"vue3-text-clamp": "^0.1.2"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.1",
"@nuxt/eslint": "^1.15.2",
"@nuxt/fonts": "^0.14.0",
"@parcel/watcher": "^2.5.6",
"@playwright/test": "^1.58.2",
"@tailwindcss/oxide": "^4.2.2",
"@tailwindcss/typography": "^0.5.19",
"@types/geojson": "^7946.0.16",
"@types/leaflet": "^1.9.21",
"@types/lodash-es": "^4.17.12",
"@types/node": "^24.0.0",
"@types/sortablejs": "^1.15.9",
"husky": "^9.1.7",
"lightningcss": "^1.32.0",
"lint-staged": "^16.4.0",
"otplib": "^13.4.0",
"sass-embedded": "^1.98.0",
"tailwindcss": "^4.2.2",
"typescript": "^5.9.3",
"vue-component-type-helpers": "^3.2.6",
"vue-tsc": "^3.2.6"
}
}