-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.46 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.46 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
{
"name": "bavisitter",
"type": "module",
"scripts": {
"dev": "ANYWIDGET_DEV=1 concurrently --kill-others \"vite\" \"pnpm jupyter\"",
"jupyter": "hatch run jupyter lab --no-browser --ServerApp.log_level='CRITICAL'",
"build": "vite build",
"typecheck": "tsc --noEmit",
"lint": "eslint . && hatch run ruff check .",
"format": "prettier . --write --log-level error && hatch run ruff format .",
"check": "pnpm lint && pnpm format",
"prepare": "husky",
"lint-staged": "lint-staged",
"test:js": "vitest --globals --run",
"test:py": "hatch run pytest",
"test": "pnpm test:js && pnpm test:py"
},
"dependencies": {
"@anywidget/react": "^0.0.8",
"@chakra-ui/react": "^2.8.2",
"@emotion/cache": "^11.13.1",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@tanstack/react-query": "^5.56.2",
"formik": "^2.4.6",
"framer-motion": "^11.8.0",
"hugeicons-react": "^0.3.0",
"immer": "^10.1.1",
"paper": "^0.12.18",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.3.0",
"react-markdown": "^9.0.1",
"react-shadow": "20.4.0",
"react-syntax-highlighter": "^15.5.0",
"react-vega": "^7.6.0",
"remark-gfm": "^4.0.0",
"simple-statistics": "^7.8.5",
"snapsvg": "^0.5.1",
"snapsvg-cjs-ts": "^0.0.6",
"vega": "^5.30.0",
"vega-embed": "^6.26.0",
"vega-lite": "^5.21.0",
"zustand": "^4.5.5"
},
"devDependencies": {
"@anywidget/vite": "^0.2.0",
"@eslint/js": "^9.11.1",
"@types/react": "^18.3.9",
"@types/react-dom": "^18.3.0",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/snapsvg": "^0.5.8",
"concurrently": "^9.0.1",
"esbuild": "^0.24.0",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "5.1.0-rc-fb9a90fa48-20240614",
"eslint-plugin-react-refresh": "^0.4.12",
"globals": "^15.9.0",
"husky": "^9.1.6",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"typescript": "^5.6.2",
"typescript-eslint": "^8.7.0",
"vite": "^5.4.8",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.1.1",
"vitest-canvas-mock": "^0.3.3"
},
"lint-staged": {
"*.{js,ts,tsx,css,html,json}": [
"vitest --globals --run related",
"eslint --fix",
"prettier --write"
],
"*.{py}": [
"hatch run ruff check --fix",
"hatch run ruff format"
]
}
}