-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
89 lines (89 loc) · 2.61 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
80
81
82
83
84
85
86
87
88
89
{
"name": "linkedregistrations-ui",
"version": "1.0.4",
"private": true,
"scripts": {
"dev": "next dev -p 3001",
"build": "next build",
"start": "next start -p 3001",
"lint": "next lint",
"prepare": "husky",
"test": "TZ=UTC jest --watch",
"test:coverage": "TZ=UTC jest --testResultsProcessor=\"./node_modules/jest-junit\" --coverage --watchAll=false",
"test:e2e:install": "npx playwright install",
"test:e2e:ci": "npx playwright test",
"test:e2e:start": "npx playwright test",
"test:e2e:record": "npx playwright codegen https://linkedregistrations.dev.hel.ninja/"
},
"dependencies": {
"@sentry/nextjs": "^7.107.0",
"@socialgouv/matomo-next": "^1.8.1",
"@tanstack/react-query": "^5.28.0",
"@types/lodash": "^4.17.0",
"@types/react-scroll": "^1.8.10",
"axios": "^1.7.4",
"axios-logger": "^2.8.0",
"classnames": "^2.5.1",
"date-fns-tz": "^2.0.1",
"formik": "^2.4.5",
"hds-core": "^3.10.1",
"hds-design-tokens": "^3.10.1",
"hds-react": "^3.10.1",
"i18next": "^23.10.1",
"ics": "^3.7.2",
"lodash": "^4.17.21",
"next": "14.2.10",
"next-auth": "^4.24.7",
"next-i18next": "^15.2.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-i18next": "^14.1.0",
"react-scroll": "^1.9.0",
"sass": "^1.72.0",
"use-debounce": "^10.0.0",
"yup": "^1.4.0"
},
"devDependencies": {
"@commitlint/cli": "^19.2.2",
"@commitlint/config-conventional": "^19.2.2",
"@faker-js/faker": "^8.4.1",
"@playwright/test": "^1.42.1",
"@swc/core": "^1.4.8",
"@swc/jest": "^0.2.36",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest-axe": "^3.5.9",
"@types/react": "18.2.65",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"eslint": "8.57.0",
"eslint-config-next": "14.1.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.9.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-axe": "^8.0.0",
"jest-date-mock": "^1.0.8",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^16.0.0",
"jest-localstorage-mock": "^2.4.26",
"jest-watch-typeahead": "^2.2.2",
"msw": "^1.3.2",
"next-router-mock": "^0.9.12",
"prettier": "^3.2.5",
"snyk": "^1.1284.0",
"typescript": "5.4.2",
"waait": "^1.0.5"
},
"resolutions": {
"follow-redirects": "1.15.6",
"jose": "4.15.5",
"npmlog": "^7.0.0",
"semver": "7.5.4"
},
"jest-junit": {
"outputDirectory": ".",
"outputName": "jest-report.xml",
"uniqueOutputName": "false"
}
}