-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.33 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
90
91
92
93
94
{
"name": "crypto-trade-analyzer",
"description": "Real-time spot trade analyzer simulating order execution using live order books.",
"version": "1.3.1",
"type": "module",
"engines": {
"node": ">=18.18.0 || >=20"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview --host",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"clean": "rimraf dist",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,css,md}": [
"npm run format"
],
"*.{ts,tsx,js,jsx}": [
"npm run lint:fix"
]
},
"browserslist": [
"defaults and supports es6-module",
"not dead",
"not op_mini all"
],
"keywords": [
"crypto",
"exchange",
"order book",
"slippage",
"fees",
"maker",
"taker",
"VIP tiers",
"token discounts",
"execution cost",
"spot",
"comparator",
"trading",
"real-time",
"analyzer"
],
"license": "Binance-Source-Available-NonCommercial-1.0",
"devDependencies": {
"@eslint/js": "^9.33.0",
"@tailwindcss/typography": "^0.5.19",
"@types/node": "^24.3.0",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"@typescript-eslint/eslint-plugin": "^8.40.0",
"@typescript-eslint/parser": "^8.40.0",
"@vitejs/plugin-react": "^5.0.0",
"autoprefixer": "^10.4.21",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"express": "^5.1.0",
"globals": "^16.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.6",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"tailwindcss": "^3.4.13",
"ts-node": "^10.9.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.40.0",
"vite": "^7.1.2",
"vite-node": "^3.2.4",
"vitest": "^4.1.9"
},
"dependencies": {
"decimal.js": "^10.6.0",
"lucide-react": "^0.544.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.9.4",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.1"
}
}