-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.08 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.08 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
{
"name": "binance-liquidation-feed",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"replay:build": "ts-node --esm scripts/buildReplayDataset.ts",
"replay:train": "ts-node --esm scripts/trainAutoencoder.ts",
"replay:capture": "node scripts/captureBinanceReplay.mjs"
},
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/react": "^2.8.1",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@tailwindcss/vite": "^4.1.4",
"framer-motion": "^10.16.4",
"lucide": "^0.476.0",
"lucide-react": "^0.476.0",
"luxon": "^3.4.3",
"react": "^18.3.1",
"react-dom": "^18.2.0",
"@tensorflow/tfjs": "^4.22.0",
"tailwindcss": "^4.1.4",
"ws": "^8.18.2",
"zustand": "^4.4.1"
},
"devDependencies": {
"@types/luxon": "^3.3.2",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.0.3",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"vite": "^5.4.18"
}
}