-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
81 lines (81 loc) · 2.47 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
{
"name": "comet-starter",
"homepage": "https://metrostar.github.io/comet-starter/",
"private": true,
"version": "1.0.0",
"description": "React and TypeScript starter app, pre-configured with the Comet component library and other tools.",
"license": "Apache-2.0",
"keywords": [
"uswds",
"react",
"components",
"comet",
"open source"
],
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "npx eslint src/ --fix --config eslint.config.js",
"lint:ci": "npx eslint src/ --config eslint.config.js",
"format": "npx prettier src --write",
"format:ci": "npx prettier src --check",
"test": "vitest --run",
"test:coverage": "vitest --run --coverage",
"e2e": "npx playwright test --ui",
"e2e:ci": "npx playwright test",
"a11y": "unlighthouse --config-file unlighthouse.config.ts",
"predeploy": "vite build --base=/comet-starter/",
"deploy": "gh-pages -d dist"
},
"dependencies": {
"@metrostar/comet-data-viz": "1.2.1",
"@metrostar/comet-extras": "1.6.2",
"@metrostar/comet-uswds": "3.7.4",
"@tanstack/react-query": "5.66.0",
"axios": "1.7.9",
"axios-mock-adapter": "2.1.0",
"jotai": "2.11.3",
"oidc-client-ts": "^3.1.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-hook-form": "7.54.2",
"react-oidc-context": "^3.2.0",
"react-router-dom": "7.1.5"
},
"devDependencies": {
"@eslint/js": "^9.20.0",
"@playwright/test": "^1.50.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "16.2.0",
"@testing-library/user-event": "14.6.1",
"@types/react": "19.0.2",
"@types/react-dom": "19.0.2",
"@vitejs/plugin-react": "4.3.4",
"@vitest/coverage-v8": "^3.0.5",
"autoprefixer": "^10.4.20",
"axe-core": "4.10.2",
"eslint": "9.20.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "5.1.0",
"gh-pages": "^6.3.0",
"jsdom": "^26.0.0",
"prettier": "3.5.0",
"prettier-plugin-organize-imports": "4.1.0",
"sass": "1.84.0",
"tsconfig-paths": "4.2.0",
"typescript": "5.7.3",
"typescript-eslint": "^8.23.0",
"unlighthouse": "0.15.0",
"vite": "^6.1.0",
"vite-plugin-environment": "1.1.3",
"vite-tsconfig-paths": "5.1.4",
"vitest": "^3.0.5"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.24.0"
}
}