-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.75 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
{
"private": true,
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"test": "vitest --run",
"test:coverage": "vitest --run --coverage",
"test:ui": "vitest --ui",
"lint": "npx eslint src --fix --config eslint.config.js",
"format": "npx prettier src --write",
"e2e": "npx playwright test",
"e2e:ui": "npx playwright test --ui",
"postinstall": "node ./scripts/postinstall.js"
},
"dependencies": {
"@metrostar/comet-data-viz": "^1.1.5",
"@metrostar/comet-extras": "^1.3.5",
"@metrostar/comet-uswds": "2.1.2",
"@tanstack/react-query": "5.50.1",
"@types/axios": "^0.14.0",
"@uswds/uswds": "^3.8.0",
"axios": "^1.7.2",
"axios-mock-adapter": "^1.22.0",
"next": "latest",
"next-auth": "^4.24.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.52.1",
"react-oidc-context": "^3.1.0",
"react-router-dom": "^6.24.1",
"recoil": "0.7.7"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@playwright/test": "^1.45.3",
"@svgr/webpack": "^8.1.0",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/node": "20.8.10",
"@types/react": "18.2.33",
"@types/react-dom": "18.2.14",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-v8": "^2.0.1",
"@vitest/ui": "^2.0.1",
"eslint": "^9.8.0",
"eslint-plugin-react": "^7.35.0",
"jest": "^29.7.0",
"jsdom": "^24.1.0",
"prettier": "3.3.3",
"sass": "^1.70.0",
"tsconfig-paths": "4.2.0",
"typescript": "^5.2.2",
"typescript-eslint": "^8.0.0",
"url-loader": "^4.1.1",
"vite-tsconfig-paths": "4.3.2",
"vitest": "^2.0.3"
}
}