-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.91 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.91 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
{
"name": "traderush",
"version": "0.1.0",
"private": true,
"scripts": {
"backend": "cd backend && bun --watch run src/index.ts",
"dev": "bun run next dev",
"dev:turbo": "bun run next dev --turbopack",
"build": "bun run next build",
"build:turbo": "bun run next build --turbopack",
"start": "bun run next start",
"lint": "eslint --max-warnings=0 .",
"lint:fix": "eslint --max-warnings=0 --fix .",
"typecheck": "tsc --noEmit",
"format": "prettier --check .",
"format:write": "prettier --write .",
"prepare": "husky install"
},
"dependencies": {
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-toggle": "^1.1.10",
"@radix-ui/react-tooltip": "^1.2.8",
"class-variance-authority": "^0.7.1",
"date-fns": "^4.1.0",
"dev": "^0.1.3",
"framer-motion": "^12.23.12",
"lightweight-charts": "^5.0.8",
"lucide-react": "^0.542.0",
"next": "15.5.2",
"react": "19.1.0",
"react-dom": "19.1.0",
"tailwind-merge": "^3.3.1",
"zod": "^4.1.5",
"zustand": "^5.0.8"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
"clsx": "^2.1.1",
"eslint": "^9",
"eslint-config-next": "15.5.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "^5.1.0",
"husky": "^9.1.6",
"prettier": "^3.3.3",
"tailwindcss": "^4",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5",
"typescript-eslint": "^8.13.0"
}
}