This repository has been archived by the owner on Jul 30, 2024. It is now read-only.
generated from CDCgov/template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 2.29 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
{
"name": "dex-portal",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:dev": "tsc && vite build --mode dev",
"build:tst": "tsc && vite build --mode tst",
"build:stg": "tsc && vite build --mode stg",
"build:prd": "tsc && vite build --mode prd",
"format:check": "prettier --check \"src/**/*.{js,jsx,ts,tsx,css,scss,json,md}\"",
"format:write": "prettier \"src/**/*.{js,jsx,ts,tsx,css,scss,json,md}\" --write",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test": "TZ=UTC vitest",
"test:coverage": "TZ=UTC vitest run --coverage",
"e2e": "npx playwright test"
},
"dependencies": {
"@axe-core/playwright": "^4.8.5",
"@azure/app-configuration": "^1.6.0",
"@faker-js/faker": "^8.4.1",
"@nivo/core": "^0.85.1",
"@nivo/pie": "^0.85.1",
"@tanstack/react-table": "^8.17.3",
"@us-gov-cdc/cdc-react": "^1.13.0",
"@us-gov-cdc/cdc-react-icons": "^2.7.0",
"classnames": "^2.5.1",
"date-fns": "^3.6.0",
"msw": "^2.2.1",
"oidc-client-ts": "^2.2.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-oidc-context": "^2.2.2",
"react-router-dom": "^6.14.2",
"recoil": "^0.7.7",
"tus-js-client": "^4.0.1"
},
"devDependencies": {
"@playwright/test": "^1.38.1",
"@testing-library/jest-dom": "^6.1.2",
"@testing-library/react": "^15.0.2",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^29.5.4",
"@types/node": "^20.4.8",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react": "^4.0.3",
"@vitest/coverage-v8": "^1.6.0",
"dotenv": "^16.3.1",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"jsdom": "^22.1.0",
"prettier": "^3.0.1",
"sass": "^1.65.1",
"typescript": "^5.0.2",
"vite": "^4.5.3",
"vite-plugin-static-copy": "^1.0.0",
"vitest": "^1.6.0"
}
}