-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.47 KB
/
package.json
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
{
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"server": "python -c 'from waltzboard.app import run_app; run_app()'",
"build": "tsc && vite build",
"preview": "vite preview",
"prepare": "lint-staged",
"lint": "eslint . --fix && prettier --write . && ruff check . --fix && ruff format ."
},
"dependencies": {
"@chakra-ui/react": "^2.8.1",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fontsource/rajdhani": "^5.0.8",
"@preact/signals-react": "1.3.6",
"@types/d3-format": "^3.0.1",
"@visx/axis": "^3.3.0",
"@visx/group": "^3.3.0",
"@visx/legend": "^3.3.0",
"@visx/point": "^3.3.0",
"@visx/responsive": "^3.3.0",
"@visx/scale": "^3.3.0",
"@visx/shape": "^3.3.0",
"@visx/stats": "^3.3.0",
"@visx/text": "^3.3.0",
"axios": "^1.5.0",
"d3-format": "^3.1.0",
"d3-scale-chromatic": "^3.0.0",
"framer-motion": "^10.16.4",
"pretendard": "^1.3.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.11.0",
"react-vega": "^7.6.0",
"scale": "link:@types/@visx/scale",
"shape": "link:@types/@visx/shape",
"typia": "^5.0.4",
"vega": "^5.25.0",
"vega-lite": "^5.14.1",
"vega-tooltip": "^0.33.0"
},
"devDependencies": {
"@types/d3-scale-chromatic": "^3.0.0",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.0.4",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"typescript": "^5.2.2",
"vite": "^4.4.9"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{py,ipython,pyi}": [
"pyright",
"ruff check . --fix",
"ruff format ."
]
}
}