-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.25 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 3.25 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
{
"name": "playground",
"private": true,
"version": "1.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint \"src/**/*.{ts,tsx}\" \"tests/playwright/**/*.ts\" --cache --cache-location node_modules/.cache/eslint",
"lint:fix": "eslint \"src/**/*.{ts,tsx}\" \"tests/playwright/**/*.ts\" --cache --cache-location node_modules/.cache/eslint --fix",
"preview": "vite preview",
"check": "tsc --noEmit",
"check:types": "tsc --noEmit",
"check:all": "pnpm run check && pnpm run lint",
"test": "vitest",
"lint:strict": "eslint \"src/**/*.{ts,tsx}\" \"tests/playwright/**/*.ts\" --cache --cache-location node_modules/.cache/eslint --max-warnings=0",
"pw:install": "pnpm exec playwright install --with-deps",
"test:pw": "pnpm exec playwright test --output=tests/reports",
"pw:codegen": "npx playwright codegen --output=tests/playwright/new-test.ts http://localhost:3006"
},
"dependencies": {
"@base-ui/react": "^1.3.0",
"@codemirror/autocomplete": "^6.20.1",
"@codemirror/commands": "^6.10.3",
"@codemirror/lang-java": "^6.0.2",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/lang-sql": "^6.10.0",
"@codemirror/language": "^6.12.2",
"@codemirror/lint": "^6.9.5",
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.41.0",
"@lezer/highlight": "^1.2.3",
"@types/react-syntax-highlighter": "^15.5.13",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/xterm": "^6.0.0",
"clsx": "^2.1.1",
"highlight.js": "^11.11.1",
"lucide-react": "^0.511.0",
"pinyin-match": "^1.2.10",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-icons": "^5.6.0",
"react-markdown": "^10.1.0",
"react-resizable-panels": "^4.7.0",
"react-router-dom": "^7.14.0",
"react-syntax-highlighter": "^16.1.1",
"rehype-highlight": "^7.0.2",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "6.0.0",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.5.0",
"ws": "^8.20.0",
"xterm": "^5.3.0",
"xterm-addon-fit": "^0.8.0",
"zustand": "^5.0.12"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@playwright/test": "^1.59.1",
"@tailwindcss/postcss": "^4.2.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^5.2.0",
"@vitest/coverage-v8": "4.0.18",
"autoprefixer": "^10.5.0",
"babel-plugin-react-dev-locator": "^1.0.6",
"eslint": "^9.25.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.5.0",
"jsdom": "^29.0.1",
"postcss": "^8.5.10",
"tailwind-scrollbar": "^4.0.2",
"tailwindcss": "^4.2.2",
"typescript": "~5.9.3",
"typescript-eslint": "^8.58.0",
"vite": "^8.0.9",
"vite-plugin-trae-solo-badge": "^1.0.0",
"vite-tsconfig-paths": "^6.0.3",
"vitest": "^4.0.18"
},
"pnpm": {
"overrides": {
"@lezer/common": "^1.5.1"
}
},
"packageManager": "pnpm@10.32.1+sha512.a706938f0e89ac1456b6563eab4edf1d1faf3368d1191fc5c59790e96dc918e4456ab2e67d613de1043d2e8c81f87303e6b40d4ffeca9df15ef1ad567348f2be"
}