-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.15 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 3.15 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
{
"name": "linkedregistrations-ui",
"version": "1.12.1",
"private": true,
"packageManager": "pnpm@11.1.3",
"engines": {
"node": ">=24.14.1",
"pnpm": ">=11.1.3"
},
"scripts": {
"dev": "pnpm fix-hds-shim && pnpm update-runtime-env && next dev -p 3001",
"build": "pnpm fix-hds-shim && next build",
"start": "pnpm update-runtime-env && next start -p 3001",
"lint": "eslint .",
"prepare": "husky",
"test": "NODE_ENV=test pnpm update-runtime-env && TZ=UTC vitest --watch",
"test:coverage": "NODE_ENV=test pnpm update-runtime-env && TZ=UTC vitest run --coverage",
"test:e2e:install": "playwright install",
"test:e2e:ci": "playwright test",
"test:e2e:start": "playwright test",
"test:e2e:record": "playwright codegen https://linkedregistrations.dev.hel.ninja/",
"update-runtime-env": "node scripts/update-runtime-env.js . ./public",
"fix-hds-shim": "node scripts/fix-hds-core-cookie-consent.js"
},
"dependencies": {
"@juggle/resize-observer": "^3.4.0",
"@sentry/browser": "^10.56.0",
"@sentry/core": "^10.56.0",
"@sentry/nextjs": "^10.56.0",
"@socialgouv/matomo-next": "^1.8.1",
"@tanstack/react-query": "^5.101.0",
"@types/lodash": "^4.17.24",
"@types/node": "^24.12.4",
"@types/react-scroll": "^1.8.10",
"classnames": "^2.5.1",
"date-fns": "^2.16.1",
"date-fns-tz": "^2.0.1",
"dotenv": "^16.5.0",
"formik": "^2.4.9",
"hds-core": "^6.0.2",
"hds-design-tokens": "^6.0.2",
"hds-react": "^6.0.2",
"i18next": "^23.16.8",
"ics": "^3.7.2",
"lodash": "^4.18.1",
"next": "~15.5.18",
"next-auth": "^4.24.13",
"next-i18next": "^15.4.3",
"react": "19.2.7",
"react-dom": "19.2.7",
"react-i18next": "^14.1.0",
"react-merge-refs": "^3.0.2",
"react-scroll": "^1.9.3",
"react-use-measure": "^2.0.1",
"sass": "^1.99.0",
"use-debounce": "^10.0.0",
"yup": "^1.4.0"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@eslint-react/eslint-plugin": "^4.2.3",
"@eslint/js": "^10.0.1",
"@faker-js/faker": "^8.4.1",
"@next/eslint-plugin-next": "^16.2.2",
"@playwright/test": "^1.60.0",
"@stylistic/eslint-plugin": "^5.10.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/react": "19.2.16",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-istanbul": "^4.1.3",
"@vitest/eslint-plugin": "^1.6.14",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-config-vitest-globals": "^2.0.2",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-react-hooks": "^7.1.1",
"fake-indexeddb": "^6.0.0",
"husky": "^9.0.11",
"jsdom": "^29.0.1",
"msw": "^2.13.0",
"next-router-mock": "^0.9.13",
"prettier": "^3.2.5",
"shadow-dom-testing-library": "^1.11.3",
"typescript": "5.4.2",
"typescript-eslint": "^8.58.1",
"vite": "^8.0.16",
"vitest": "^4.1.3",
"vitest-axe": "^0.1.0",
"waait": "^1.0.5"
}
}