-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.26 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.26 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
{
"name": "sql2er",
"version": "1.0.0",
"private": true,
"type": "module",
"packageManager": "pnpm@10.29.2",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"serve:dist": "pnpm run build && vite preview --host 127.0.0.1",
"typecheck": "tsc -b --pretty false",
"lint": "tsc -b --pretty false",
"format": "prettier --write \"src/**/*.{ts,tsx,css}\" \"*.{json,md,html}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,css}\" \"*.{json,md,html}\"",
"check": "pnpm run typecheck && pnpm run format:check && pnpm run test",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@antv/g6": "4.8.25",
"@codemirror/lang-sql": "^6.10.0",
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.41.1",
"codemirror": "^6.0.2",
"prismjs": "^1.30.0",
"react": "^19.2.5",
"react-dom": "^19.2.5"
},
"devDependencies": {
"@types/node": "^25.6.0",
"@types/prismjs": "^1.26.6",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"prettier": "^3.4.2",
"typescript": "^6.0.3",
"vite": "^8.0.10",
"vitest": "^4.0.0"
},
"pnpm": {
"onlyBuiltDependencies": ["esbuild"]
}
}