-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.33 KB
/
package.json
File metadata and controls
83 lines (83 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
{
"name": "esmeta-debugger-client",
"version": "0.2.1",
"type": "module",
"private": true,
"dependencies": {
"@headlessui/react": "^2.2.0",
"@monaco-editor/react": "^4.7.0",
"@radix-ui/react-tooltip": "^1.2.4",
"@xyflow/react": "^12.6.4",
"awesome-debounce-promise": "^2.1.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"d3-graphviz": "^5.6.0",
"ecmarkdown": "^8.1.0",
"fzf": "^0.5.2",
"jotai": "^2.12.3",
"lucide-react": "^0.468.0",
"motion": "^11.15.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-intersection-observer": "^9.14.1",
"react-resizable-panels": "^2.1.7",
"react-toastify": "^11.0.5",
"tailwind-merge": "^2.6.0",
"tailwind-styled-components": "^2.2.0",
"tailwindcss-animate": "^1.0.7",
"uuid": "^11.0.3",
"web-vitals": "^4.2.4",
"zod": "^3.24.1"
},
"scripts": {
"start": "vite build --base=/ && vite preview",
"dev": "vite",
"build": "node scripts/build.mjs",
"build:root": "ESMETA_CLIENT_WORKER_AS_DEFAULT=true node scripts/build-with-base.mjs /",
"build:base": "ESMETA_CLIENT_WORKER_AS_DEFAULT=true node scripts/build-with-base.mjs",
"lint": "eslint .",
"format": "npx prettier --write 'src/**/*.{js,ts,tsx,mjs,cjs,json}' | grep -v '(unchanged)'",
"preview": "vite preview",
"test": "vitest",
"test:run": "vitest run"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@playwright/test": "^1.56.1",
"@tailwindcss/postcss": "^4.1.5",
"@types/d3-graphviz": "^2.6.10",
"@types/node": "^22.10.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-grid-layout": "^1.3.5",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"@vitejs/plugin-react": "^4.3.4",
"autoprefix": "^1.0.1",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"postcss": "^8.4.49",
"tailwindcss": "^4.1.5",
"typescript": "^5.7.2",
"vite": "^6.0.1",
"vitest": "^3.1.3"
}
}