-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.7 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
{
"name": "iv-verify",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest",
"coverage": "vitest run --coverage",
"pa11y-ci": "start-server-and-test start http://localhost:3000 \"pa11y-ci --sitemap http://localhost:3000/api/sitemap --config .pa11yci --sitemap-exclude /benefits\"",
"e2e:headless": "start-server-and-test start http://localhost:3000 \"cypress run --e2e\""
},
"dependencies": {
"@reduxjs/toolkit": "^2.2.5",
"@trussworks/react-uswds": "^9.0.0",
"i18next": "^23.11.5",
"i18next-browser-languagedetector": "^8.0.0",
"i18next-resources-to-backend": "^1.2.1",
"next": "14.2.14",
"next-i18n-router": "^5.5.0",
"next-i18next": "^15.3.0",
"next-router-mock": "^0.9.13",
"pdf-lib": "^1.17.1",
"react": "^18",
"react-cookie": "^7.1.4",
"react-dom": "^18",
"react-hook-form": "^7.51.5",
"react-i18next": "^14.1.2",
"react-redux": "^9.1.2",
"redux-mock-store": "^1.5.4",
"sharp": "^0.33.4",
"uuid": "^10.0.0",
"vite-tsconfig-paths": "^4.3.2"
},
"devDependencies": {
"@testing-library/react": "^15.0.7",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^4.3.0",
"@vitest/coverage-v8": "^1.6.0",
"cypress": "^13.14.1",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"eslint-plugin-i18next": "^6.0.3",
"eslint-plugin-unused-imports": "^3.2.0",
"jsdom": "^24.1.0",
"pa11y-ci": "^3.1.0",
"start-server-and-test": "^2.0.5",
"typescript": "^5",
"vitest": "^1.6.0"
}
}