-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
85 lines (85 loc) · 2.8 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
{
"name": "river-ui-vite",
"private": true,
"version": "0.0.0",
"type": "module",
"dependencies": {
"@dagrejs/dagre": "^1.1.4",
"@headlessui/react": "^2.2.0",
"@headlessui/tailwindcss": "^0.2.1",
"@heroicons/react": "^2.1.5",
"@tailwindcss/typography": "^0.5.15",
"@tanstack/react-query": "^5.59.19",
"@tanstack/react-router": "^1.78.3",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"next-themes": "^0.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.4.1",
"react-time-sync": "^5.2.1",
"reactflow": "^11.11.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.2",
"@eslint/js": "^9.16.0",
"@faker-js/faker": "^9.3.0",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-links": "^8.4.7",
"@storybook/addon-onboarding": "^8.4.7",
"@storybook/addon-themes": "^8.4.7",
"@storybook/blocks": "^8.2.9",
"@storybook/react": "^8.4.7",
"@storybook/react-vite": "^8.4.7",
"@storybook/test": "^8.2.9",
"@tailwindcss/forms": "^0.5.9",
"@tanstack/eslint-plugin-query": "^5.61.6",
"@tanstack/react-query-devtools": "^5.62.0",
"@tanstack/router-devtools": "^1.85.0",
"@tanstack/router-vite-plugin": "^1.84.4",
"@testing-library/react": "^16.1.0",
"@types/eslint__js": "^8.42.3",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"@vitejs/plugin-react-swc": "^3.7.2",
"autoprefixer": "^10.4.20",
"concurrently": "^9.1.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"eslint-plugin-storybook": "^0.11.1",
"eslint-plugin-tailwindcss": "^3.17.5",
"fishery": "^2.2.2",
"globals": "^15.13.0",
"postcss": "^8.4.49",
"storybook": "^8.3.0",
"tailwindcss": "^3.4.16",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0",
"vite": "^6.0.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.8"
},
"overrides": {
"@typescript-eslint/utils": {
"eslint": "$eslint"
}
},
"scripts": {
"build": "tsc && vite build",
"build-storybook": "storybook build",
"dev": "concurrently --kill-others \"npm:watch:*\"",
"fmt": "eslint --cache --fix --report-unused-disable-directives --max-warnings 0 .",
"lint": "eslint --cache --report-unused-disable-directives --max-warnings 0 .",
"preview": "LIVE_FS=true reflex -c .reflex.server",
"storybook": "storybook dev -p 6006",
"test": "vitest",
"watch:frontend": "vite --open http://localhost:8080/",
"watch:backend": "LIVE_FS=true DEV=true reflex -c .reflex.server"
}
}