-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.08 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.08 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "quickstart-openshift-react-frontend",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite --host",
"clean": "rimraf ./node_modules/.vite",
"build:analyze": "vite build --mode analyze",
"build:clean": "rimraf dist",
"deploy": "npm ci --ignore-scripts --no-update-notifier --omit=dev && npm run build",
"preview": "vite preview",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"lint:fix": "eslint \"src/**/*.{ts,tsx}\" --fix",
"test:unit": "vitest --mode test",
"test:cov": "vitest run --mode test --coverage",
"build": "vite build"
},
"dependencies": {
"@bcgov/bc-sans": "^2.1.0",
"@bcgov/design-system-react-components": "^0.5.0",
"@popperjs/core": "^2.11.8",
"@tanstack/react-router": "^1.114.12",
"@tanstack/router-plugin": "^1.114.27",
"@types/node": "^22.13.11",
"@vitejs/plugin-react": "^5.0.0",
"axios": "^1.7.7",
"bootstrap": "^5.3.3",
"bootstrap-icons": "^1.11.3",
"react": "^19.0.0",
"react-bootstrap": "^2.10.9",
"react-dom": "^19.0.0",
"sass-embedded": "^1.86.0",
"vite": "^7.0.0",
"vite-tsconfig-paths": "^5.1.4"
},
"devDependencies": {
"@faker-js/faker": "^10.0.0",
"@playwright/test": "^1.51.0",
"@tanstack/react-router-devtools": "^1.114.13",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@vitest/coverage-v8": "^3.0.8",
"@vitest/ui": "^3.0.8",
"@eslint/js": "^9.38.0",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^7.0.0",
"typescript-eslint": "^8.46.2",
"history": "^5.3.0",
"jsdom": "^27.0.0",
"msw": "^2.7.3",
"playwright": "^1.51.0",
"prettier": "^3.5.3",
"sass": "^1.85.1",
"typescript": "^5.7.3",
"vitest": "^3.0.8"
},
"overrides": {
"rollup@<4.22.4": "^4.22.4",
"@types/react": "^19.0.10"
}
}