-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.57 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.57 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
{
"name": "web-application-nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build && cp -r .next/static .next/standalone/.next && cp -r public .next/standalone/",
"start": "node .next/standalone/server.js",
"lint": "next lint",
"prettier": "prettier 'src/**/*.{js,ts,jsx,tsx,css}' --check",
"prettier:fix": "prettier 'src/**/*.{js,ts,jsx,tsx,css}' --write",
"test:unit": "jest --coverage",
"test:unit:watch": "jest --watch",
"test:e2e": "npm run build && playwright test"
},
"dependencies": {
"@trussworks/react-uswds": "^9.1.0",
"@uswds/uswds": "^3.12.0",
"classnames": "^2.5.1",
"focus-trap-react": "10.2.3",
"next": "15.2.4",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@playwright/test": "^1.53.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^29.5.14",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"axe-playwright": "^2.1.0",
"eslint": "^9.28.0",
"eslint-config-next": "15.2.4",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-unused-imports": "^4.1.4",
"jest": "^30.0.0",
"jest-environment-jsdom": "^30.0.0",
"prettier": "^3.5.3",
"sass": "^1.86.0",
"ts-node": "^10.9.2",
"typescript": "^5"
},
"overrides": {
"glob": "10.4.5"
}
}