-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.44 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.44 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
{
"name": "rust-quant-lab",
"version": "0.1.0",
"description": "RustQuantLab - 探索 WebAssembly 在高频金融数据处理场景中的性能边界",
"type": "module",
"scripts": {
"build:wasm": "cd core && wasm-pack build --target web --out-dir pkg",
"dev": "npm run build:wasm && vite",
"build": "npm run build:wasm && vite build",
"preview": "vite preview",
"lint": "eslint src --max-warnings 0",
"lint:fix": "eslint src --fix",
"test:rust": "cd core && cargo test --lib",
"bench": "cd core && cargo bench --bench engine_bench",
"docs:rust": "cd core && cargo doc --open",
"prepare": "husky"
},
"dependencies": {
"@react-spring/web": "^10.0.3",
"@use-gesture/react": "^10.3.1",
"ahooks": "^3.9.6",
"lightweight-charts": "^5.1.0",
"lucide-react": "^0.562.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"zustand": "^4.5.2"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@tailwindcss/vite": "^4.0.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.17.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"globals": "^15.14.0",
"husky": "^9.1.7",
"tailwindcss": "^4.0.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.18.1",
"vite": "^5.4.11",
"vite-plugin-top-level-await": "^1.4.4",
"vite-plugin-wasm": "^3.3.0"
}
}