-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
87 lines (87 loc) · 2.83 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
82
83
84
85
86
87
{
"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",
"format": "npx prettier src --write",
"test": "vitest --run",
"test:coverage": "vitest --run --coverage",
"e2e": "npx cypress open",
"e2e:ci": "npm run e2e:ci:run",
"e2e:ci:run": "rm cypress/reports/* || true && npx cypress run --reporter mochawesome",
"e2e:ci:report": "mochawesome-merge cypress/reports/*.json > cypress/reports/report.json && marge --reportDir cypress/reports cypress/reports/report.json",
"e2e:format": "npx prettier cypress --write",
"a11y": "unlighthouse --config-file unlighthouse.config.ts",
"predeploy": "vite build --base=/comet-starter/",
"deploy": "gh-pages -d dist"
},
"dependencies": {
"@metrostar/comet-data-viz": "1.1.7",
"@metrostar/comet-extras": "1.4.2",
"@metrostar/comet-uswds": "3.6.1",
"@tanstack/react-query": "5.59.16",
"@tanstack/react-table": "8.20.5",
"@uswds/uswds": "3.9.0",
"axios": "1.7.7",
"axios-mock-adapter": "2.1.0",
"oidc-client-ts": "^2.4.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.53.1",
"react-oidc-context": "^2.4.0",
"react-router-dom": "6.27.0",
"recoil": "0.7.7"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@testing-library/jest-dom": "^6.6.2",
"@testing-library/react": "16.0.1",
"@testing-library/user-event": "14.5.2",
"@types/react": "18.2.17",
"@types/react-dom": "18.2.7",
"@vitejs/plugin-react": "4.3.3",
"@vitest/coverage-v8": "^2.1.3",
"autoprefixer": "^10.4.20",
"axe-core": "4.10.2",
"cypress": "13.15.1",
"cypress-axe": "1.5.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "5.0.0",
"gh-pages": "^6.2.0",
"mochawesome": "^7.1.3",
"mochawesome-merge": "^4.3.0",
"mochawesome-report-generator": "^6.2.0",
"prettier": "3.3.3",
"prettier-plugin-organize-imports": "4.1.0",
"sass": "1.80.4",
"tsconfig-paths": "4.2.0",
"typescript": "5.6.3",
"typescript-eslint": "^8.11.0",
"unlighthouse": "0.14.0",
"vite": "^5.4.10",
"vite-plugin-environment": "1.1.3",
"vite-tsconfig-paths": "5.0.1",
"vitest": "^2.0.5"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.24.0"
}
}