-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.22 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
{
"name": "rexone-web",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": ">=22.13.0",
"npm": ">=10"
},
"scripts": {
"dev": "vite --host 0.0.0.0",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:unit": "./scripts/test_unit.sh",
"test:e2e": "./scripts/test_e2e.sh",
"test:all": "./scripts/test.sh",
"test:e2e:all": "./scripts/test.sh all",
"test:e2e:signin": "./scripts/test.sh sign-in",
"test:e2e:signup": "./scripts/test.sh sign-up",
"test:e2e:passcode": "./scripts/test.sh passcode",
"test:e2e:reset": "./scripts/test.sh password-reset",
"test:e2e:sso": "./scripts/test.sh sso",
"test:e2e:signout": "./scripts/test.sh sign-out",
"test:e2e:headed": "./scripts/test.sh all --headed",
"test:e2e:ui": "./scripts/test.sh all --ui",
"test:e2e:debug": "./scripts/test.sh all --debug",
"test:e2e:codegen": "playwright codegen http://localhost:4000"
},
"dependencies": {
"@fontsource/cormorant-garamond": "^5.2.6",
"@heroicons/react": "^2.2.0",
"@react-oauth/google": "^0.13.5",
"@tanstack/react-query": "^5.102.8",
"@tanstack/react-query-persist-client": "^5.102.8",
"axios": "^1.20.0",
"i18next": "^26.4.2",
"idb-keyval": "^6.3.0",
"jotai": "^2.20.3",
"jwt-decode": "^4.0.0",
"react": "^19.2.8",
"react-clock": "^6.0.0",
"react-dom": "^19.2.8",
"react-i18next": "^17.0.13",
"react-router-dom": "^7.18.3",
"recharts": "^3.10.1",
"tailwind-merge": "^3.6.0",
"ts-clsx": "^2.4.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.63.0",
"@tailwindcss/vite": "^4.3.3",
"@types/node": "^25.9.5",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.7",
"@vitejs/plugin-react": "^6.1.1",
"baseline-browser-mapping": "^2.11.21",
"daisyui": "^5.7.28",
"eslint": "^10.10.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.6",
"globals": "^17.12.0",
"tailwindcss": "^4.3.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.3",
"vite": "^8.2.2",
"vitest": "^3.2.4"
}
}