forked from StanfordBDHG/ENGAGE-HF-Web-Frontend
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.1 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.1 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
69
70
71
72
73
74
75
{
"name": "engagehfwebfrontend",
"version": "0.1.0",
"license": "MIT",
"description": "Stanford Biodesign Digital Health ENGAGE-HF Web Frontend",
"keywords": [
"Stanford",
"Biodesign"
],
"engines": {
"node": "22"
},
"repository": {
"type": "git",
"url": "https://github.com/StanfordBDHG/ENGAGE-HF-Web-Frontend"
},
"private": true,
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:ci": "eslint --output-file eslint_report.json --format json .",
"test": "vitest run --coverage",
"prepush": "npm run lint:fix && tsc --noEmit",
"storybook": "storybook dev -p 6006"
},
"dependencies": {
"@stanfordbdhg/engagehf-models": "^0.9.0",
"@stanfordspezi/spezi-web-design-system": "^0.16.0",
"@t3-oss/env-core": "^0.13.8",
"@tanstack/react-query": "^5.90.2",
"@tanstack/react-router": "^1.132.23",
"@tanstack/react-table": "^8.21.3",
"class-variance-authority": "^0.7.1",
"date-fns": "^4.1.0",
"es-toolkit": "^1.39.10",
"firebase": "^12.3.0",
"lucide-react": "^0.544.0",
"next-intl": "^3",
"react": "^19",
"react-dom": "^19",
"react-helmet": "^6.1.0",
"use-debounce": "^10.0.6",
"uuid": "^13.0.0",
"zod": "^4.1.11"
},
"devDependencies": {
"@stanfordspezi/spezi-web-configurations": "^0.6.0",
"@storybook/react-vite": "^9.1.8",
"@tailwindcss/postcss": "^4.1.13",
"@tanstack/router-plugin": "^1.132.23",
"@testing-library/jest-dom": "^6",
"@testing-library/react": "^16",
"@total-typescript/ts-reset": "^0.6.1",
"@types/node": "^22",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-helmet": "^6.1.11",
"@vitejs/plugin-react": "^5.0.4",
"@vitest/coverage-v8": "^3.2.4",
"autoprefixer": "^10",
"eslint": "^9",
"jsdom": "^27.0.0",
"postcss": "^8",
"prettier": "^3",
"storybook": "^9.1.8",
"tailwindcss": "^4",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5",
"vite": "^7.1.7",
"vite-envs": "^4.6.2",
"vitest": "^3.2.4"
}
}