-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.89 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
{
"name": "revision-lab",
"private": true,
"version": "0.0.0",
"type": "module",
"packageManager": "pnpm@11.19.0",
"engines": {
"node": ">=24.11.0 <25",
"pnpm": "11.19.0"
},
"scripts": {
"dev": "pnpm prepare:runtime && vite",
"prepare:runtime": "node scripts/prepare-runtime.mjs",
"build": "pnpm prepare:runtime && tsc -b && vite build && pnpm check:static-size",
"build:e2e": "VITE_T2_TEST_HOOK=1 VITE_T3_TEST_HOOK=1 VITE_T4_TEST_HOOK=1 VITE_T5_TEST_HOOK=1 VITE_T8_TEST_HOOK=1 pnpm build",
"preview": "vite preview",
"lint": "eslint .",
"typecheck": "tsc -b",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"test:e2e:dev": "playwright test --config=playwright.dev.config.ts",
"check:static-size": "node scripts/check-static-file-size.mjs"
},
"dependencies": {
"@codemirror/lang-python": "6.2.1",
"@codemirror/lang-sql": "6.10.0",
"@codemirror/language": "6.12.4",
"@codemirror/legacy-modes": "6.5.4",
"@codemirror/state": "6.7.4",
"@codemirror/view": "6.43.11",
"@electric-sql/pglite": "0.5.8",
"@xyflow/react": "12.11.6",
"codemirror": "6.0.2",
"fflate": "0.8.3",
"pyodide": "314.0.6",
"react": "19.2.8",
"react-dom": "19.2.8",
"zustand": "5.0.15"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@playwright/test": "1.63.0",
"@testing-library/jest-dom": "7.0.1",
"@testing-library/react": "16.3.3",
"@testing-library/user-event": "14.6.7",
"@types/node": "24.13.3",
"@types/react": "19.2.18",
"@types/react-dom": "19.2.7",
"@vitejs/plugin-react": "6.1.1",
"eslint": "10.10.0",
"eslint-plugin-react-hooks": "7.1.1",
"eslint-plugin-react-refresh": "0.5.6",
"globals": "17.12.0",
"jsdom": "30.0.1",
"typescript": "6.0.3",
"typescript-eslint": "8.69.0",
"vite": "8.2.2",
"vitest": "5.0.0"
}
}