-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 4.23 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 4.23 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
123
124
125
126
127
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=24.13.0"
},
"scripts": {
"all-checks": "npm run lint && npm run ts:check && npm run format-check && npm run test && npm run build",
"build": "next build",
"dev": "NEW_RELIC_ENABLED=false next dev",
"local": "ENVIRONMENT=local NEW_RELIC_ENABLED=false next dev",
"debug": "NODE_OPTIONS='--inspect' next dev",
"format": "prettier --write '**/*.{js,json,md,ts,tsx,scss,yaml,yml}'",
"format-check": "prettier --check '**/*.{js,json,md,ts,tsx,scss,yaml,yml}'",
"lint": "next typegen && eslint",
"lint-fix": "next typegen && npm run lint -- --fix",
"postinstall": "node ./scripts/postinstall.js",
"start:nr": "NEW_RELIC_ENABLED=true NODE_OPTIONS='-r newrelic' next start -p ${PORT:-3000}",
"start": "next start -p ${PORT:-3000}",
"storybook": "storybook dev -p 6006",
"storybook-build": "storybook build",
"test": "jest --ci --coverage",
"test:pa11y-desktop": "pa11y-ci --config .pa11yci-desktop.json --sitemap http://localhost:3000/sitemap.xml",
"test:pa11y-mobile": "pa11y-ci --config .pa11yci-mobile.json --sitemap http://localhost:3000/sitemap.xml",
"test-watch": "jest --watch",
"test:e2e": "npx playwright test --config ./tests/playwright.config.ts",
"test:e2e:ui": "npx playwright test --config ./tests/playwright.config.ts --ui",
"ts:check": "next typegen && tsc --noEmit"
},
"dependencies": {
"@newrelic/next": "^0.10.0",
"@next/third-parties": "16.1.6",
"@opentelemetry/api": "^1.8.0",
"@rjsf/utils": "^5.24.8",
"@trussworks/react-uswds": "^11",
"@uswds/uswds": "^3.13.0",
"@zip.js/zip.js": "^2.7.60",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"clsx": "^2.1.1",
"cookies-next": "^6.1.1",
"dayjs": "^1.11.13",
"focus-trap-react": "^11",
"immutable": "^5.1.5",
"isomorphic-dompurify": "^2.15.0",
"jose": "^5.9.6",
"js-cookie": "^3.0.5",
"json-pointer": "^0.6.2",
"json-schema-merge-allof": "^0.8.1",
"lodash": "^4.17.23",
"newrelic": "^12.7.0",
"next": "^16.1.6",
"next-intl": "^4.8.1",
"next-navigation-guard": "^0.2.0",
"pino": "^9.6.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"server-only": "^0.0.1",
"sharp": "^0.34.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@chromatic-com/storybook": "^5.0.0",
"@ianvs/prettier-plugin-sort-imports": "^4.0.2",
"@playwright/test": "^1.44.0",
"@storybook/addon-docs": "^10.2.3",
"@storybook/nextjs-vite": "10.2.4",
"@storybook/react": "10.2.4",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.4.3",
"@types/dotenv": "^6.1.1",
"@types/jest-axe": "^3.5.5",
"@types/js-cookie": "^3.0.6",
"@types/json-pointer": "^1.0.34",
"@types/json-schema-merge-allof": "^0.6.5",
"@types/lodash": "^4.17.13",
"@types/new-relic-browser": "^1.230.5",
"@types/newrelic": "^9.14.6",
"@types/node": "^24.10.8",
"@types/node-fetch": "^2.6.11",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8",
"@typescript-eslint/parser": "^8",
"dotenv": "^17.2.2",
"eslint": "^9.39.0",
"eslint-config-nava": "^13",
"eslint-config-next": "^15",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-jest": "^28",
"eslint-plugin-jest-dom": "^5.0.1",
"eslint-plugin-storybook": "^10.2.3",
"eslint-plugin-testing-library": "^7",
"jest": "^29.5.0",
"jest-axe": "^7.0.0",
"jest-cli": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"json-schema": "^0.4.0",
"otplib": "^12.0.1",
"pa11y-ci": "^3.1.0",
"postcss": "^8.4.31",
"postcss-loader": "^7.1.0",
"postcss-preset-env": "^8.0.1",
"prettier": "^3.2.5",
"sass": "^1.78.0",
"storybook": "^10.2.3",
"style-loader": "^3.3.2",
"typescript": "^5.9.2",
"vite": "^7.0.0"
},
"overrides": {
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"next-navigation-guard": {
"next": "^16.0.0"
},
"devEngines": {
"packageManager": {
"name": "npm"
}
}
}
}