-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.5 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.5 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
76
77
78
79
80
81
82
83
84
85
86
87
{
"version": "0.70.0",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite",
"dev:e2e": "vite --mode e2e",
"build": "tsc -p tsconfig.build.json && vite build",
"test": "TZ=UTC vitest",
"test:e2e": "start-server-and-test dev:e2e http://localhost:8080 cypress:open",
"cypress:open": "cypress open",
"prepare": "husky || true",
"lint": "oxlint --type-aware",
"lint:fix": "oxlint --type-aware --fix",
"fmt": "oxfmt --check",
"fmt:fix": "oxfmt"
},
"dependencies": {
"@dinero.js/currencies": "^2.0.0-alpha.11",
"@hcaptcha/react-hcaptcha": "^2.0.2",
"@hookform/resolvers": "^5.2.2",
"@sentry/react": "^7.112.2",
"@tabler/icons-react": "^3.2.0",
"@tippyjs/react": "^4.2.5",
"@xyflow/react": "^12.2.1",
"axios": "^1.13.5",
"chroma-js": "^3.2.0",
"clsx": "^2.0.0",
"date-fns": "^2.29.3",
"dinero.js": "^2.0.0-alpha.11",
"elkjs": "^0.11.0",
"framer-motion": "^10.9.1",
"lodash-es": "^4.17.23",
"prop-types": "^15.7.2",
"randomcolor": "^0.6.2",
"react": "^18.3.0",
"react-day-picker": "^8.3.5",
"react-dom": "^18.3.1",
"react-focus-lock": "^2.13.6",
"react-hook-form": "^7.66.0",
"react-router-dom": "^6.30.3",
"react-select": "^5.8.0",
"react-useportal": "^1.0.19",
"recharts": "^2.15.2",
"recoil": "^0.7.6",
"swr": "^2.0.0",
"use-debounce": "^9.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.17",
"@testing-library/cypress": "^10.1.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^15.0.4",
"@testing-library/user-event": "^14.5.2",
"@types/chroma-js": "^3.1.2",
"@types/lodash-es": "^4.17.12",
"@types/randomcolor": "^0.5.9",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react-swc": "^3.8.0",
"@vitest/coverage-v8": "^4.0.18",
"axios-mock-adapter": "^1.20.0",
"cypress": "^15.11.0",
"eslint-plugin-cypress": "^3.3.0",
"eslint-plugin-jest-dom": "^5.4.0",
"eslint-plugin-testing-library": "^6.2.2",
"husky": "^9.0.11",
"jsdom": "^24.0.0",
"lint-staged": ">=10",
"oxfmt": "^0.34.0",
"oxlint": "^1.49.0",
"oxlint-tsgolint": "^0.14.2",
"start-server-and-test": "^2.0.0",
"tailwindcss": "^4.1.17",
"typescript": "^5.4.5",
"vite": "^7.3.1",
"vitest": "^4.0.18"
},
"lint-staged": {
"*.{ts,js,tsx,jsx}": "npm run lint"
},
"browserslist": ">0.75%",
"engines": {
"node": "24.x"
}
}