-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 2.52 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"scripts": {
"dev": "vite",
"dev:e2e": "vite --mode e2e",
"build": "tsc -p tsconfig.build.json && vite build",
"test": "vitest",
"test:e2e": "start-server-and-test dev:e2e http://localhost:8080 cypress:open",
"cypress:open": "cypress open",
"prepare": "husky || true",
"lint": "eslint src/**/*.{js,jsx,ts,tsx}"
},
"dependencies": {
"@dinero.js/currencies": "^2.0.0-alpha.11",
"@hookform/resolvers": "^3.3.4",
"@sentry/react": "^7.112.2",
"@tabler/icons-react": "^3.2.0",
"@tippyjs/react": "^4.2.5",
"@xyflow/react": "^12.2.1",
"axios": "^1.2.1",
"clsx": "^2.0.0",
"dagre": "^0.8.5",
"date-fns": "^2.29.3",
"dinero.js": "^2.0.0-alpha.11",
"framer-motion": "^10.9.1",
"lodash-es": "^4.17.21",
"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.9.2",
"react-hook-form": "^7.43.8",
"react-router-dom": "^6.23.1",
"react-select": "^5.8.0",
"recharts": "^2.13.0",
"recoil": "^0.7.6",
"swr": "^2.0.0",
"use-debounce": "^9.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^2.2.2",
"@testing-library/cypress": "^10.0.1",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^15.0.4",
"@testing-library/user-event": "^14.5.2",
"@types/dagre": "^0.7.52",
"@types/lodash-es": "^4.17.12",
"@types/randomcolor": "^0.5.9",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"@vitejs/plugin-react-swc": "^3.6.0",
"@vitest/coverage-v8": "^1.5.2",
"autoprefixer": "^10.4.19",
"axios-mock-adapter": "^1.20.0",
"cypress": "^13.8.1",
"eslint": "^8.57.0",
"eslint-plugin-cypress": "^3.3.0",
"eslint-plugin-jest-dom": "^5.4.0",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-testing-library": "^6.2.2",
"husky": "^9.0.11",
"jsdom": "^24.0.0",
"lint-staged": ">=10",
"postcss": "^8.4.38",
"start-server-and-test": "^2.0.0",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5",
"vite": "^5.2.10",
"vitest": "^1.5.2"
},
"license": "MIT",
"browserslist": ">0.75%",
"lint-staged": {
"*.{ts,js,tsx,jsx}": "eslint --fix"
},
"version": "0.43.1",
"engines": {
"node": "20.x"
},
"type": "module"
}