-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.17 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 3.17 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
88
89
{
"name": "river-ui-vite",
"private": true,
"version": "0.0.0",
"type": "module",
"dependencies": {
"@dagrejs/dagre": "^2.0.4",
"@headlessui/react": "^2.2.9",
"@heroicons/react": "^2.2.0",
"@nanostores/persistent": "^1.3.3",
"@nanostores/react": "^1.0.0",
"@tailwindcss/typography": "^0.5.19",
"@tanstack/react-query": "^5.90.21",
"@tanstack/react-router": "^1.163.3",
"@xyflow/react": "^12.10.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"nanostores": "^1.1.1",
"next-themes": "^0.4.6",
"query-string": "^9.3.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-hot-toast": "^2.6.0",
"react-time-sync": "^5.2.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@chromatic-com/storybook": "^5.0.1",
"@eslint/css": "^0.14.1",
"@eslint/js": "^9.39.2",
"@faker-js/faker": "^10.3.0",
"@storybook/addon-docs": "^10.2.13",
"@storybook/addon-links": "^10.2.13",
"@storybook/addon-onboarding": "^10.2.13",
"@storybook/addon-themes": "^10.2.13",
"@storybook/react-vite": "^10.2.13",
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/vite": "^4.2.1",
"@tanstack/eslint-plugin-query": "^5.91.4",
"@tanstack/react-query-devtools": "^5.91.3",
"@tanstack/react-router-devtools": "^1.163.3",
"@tanstack/router-vite-plugin": "^1.164.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/eslint__js": "^9.14.0",
"@types/node": "^25.3.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react-swc": "^4.2.3",
"concurrently": "^9.2.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-perfectionist": "^5.6.0",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"eslint-plugin-storybook": "^10.2.13",
"fishery": "^2.4.0",
"globals": "^17.4.0",
"jsdom": "^28.1.0",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"storybook": "^10.2.13",
"tailwind-csstree": "^0.1.0",
"tailwindcss": "^4.1.8",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vite": "^7.3.1",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.0.18"
},
"overrides": {
"storybook": "$storybook"
},
"scripts": {
"build": "tsc && vite build",
"build-storybook": "storybook build",
"dev": "concurrently --kill-others \"npm:watch:frontend\" \"npm:watch:backend\"",
"dev:pro": "concurrently --kill-others \"npm:watch:frontend\" \"npm:watch:backend:pro\"",
"fmt": "eslint --cache --fix --report-unused-disable-directives --max-warnings 0 . && prettier --cache --log-level error --write .",
"lint": "eslint --cache --report-unused-disable-directives --max-warnings 0 . && prettier --cache --log-level error --check .",
"preview": "LIVE_FS=true reflex -c .reflex.server",
"storybook": "storybook dev -p 6006",
"test": "vitest",
"test:once": "vitest run",
"watch:frontend": "vite --open http://localhost:8080/",
"watch:backend": "LIVE_FS=true DEV=true reflex -c .reflex.server",
"watch:backend:pro": "LIVE_FS=true DEV=true reflex -c .reflex.pro.server"
}
}