-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 2.13 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
{
"name": "agir-front",
"private": true,
"version": "1.28.0",
"type": "module",
"scripts": {
"convert:webp": "node convertToWebP.js",
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"format:typescript": "prettier --write \"**/*.+(js|ts|json|tsx|jsx|vue)\"",
"test": "vitest run",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"test:e2e": "playwright test --workers=1",
"test:e2e--dev": "npx playwright test --workers=1 --project='chromium' --ui",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@gouvfr/dsfr": "1.11.2",
"@hotjar/browser": "1.0.9",
"@iframe-resizer/vue": "^5.3.2",
"@sentry/vue": "8.37.1",
"@vue-leaflet/vue-leaflet": "^0.10.1",
"chart.js": "4.4.6",
"jwt-decode": "4.0.0",
"leaflet": "^1.9.4",
"pinia": "2.2.6",
"pinia-plugin-persistedstate": "4.1.3",
"redaxios": "0.5.1",
"vue": "3.5.12",
"vue-chartjs": "5.3.2",
"vue-matomo": "4.2.0",
"vue-router": "4.4.5"
},
"devDependencies": {
"@playwright/test": "1.48.2",
"@testing-library/vue": "8.1.0",
"@types/node": "22.9.0",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@vitejs/plugin-vue": "5.1.5",
"@vitest/coverage-v8": "2.0.5",
"@vue/test-utils": "2.4.6",
"dotenv": "16.4.5",
"eslint": "8.57.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-vue": "9.30.0",
"husky": "9.1.6",
"jsdom": "25.0.1",
"jsdom-global": "3.0.2",
"lighthouse": "^12.2.1",
"lint-staged": "15.2.10",
"playwright-lighthouse": "^4.0.0",
"prettier": "3.3.3",
"release-please": "16.14.3",
"sharp": "^0.33.5",
"ts-node": "10.9.2",
"typescript": "5.6.3",
"validate-branch-name": "1.3.1",
"vite": "5.4.11",
"vitest": "2.0.5",
"vue-tsc": "2.1.10"
},
"resolutions": {
"semver": "7.5.3",
"strip-ansi": "6.0.1",
"string-width": "4.2.2",
"wrap-ansi": "7.0.0"
},
"lint-staged": {
"*.(ts|vue)": [
"eslint --fix",
"prettier --write",
"git add"
]
}
}