-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.39 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
{
"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",
"skill:build": "node skills/sql2er/scripts/build.mjs"
},
"dependencies": {
"@antv/g6": "4.8.25",
"@babel/runtime": "7.29.7",
"@codemirror/lang-sql": "^6.10.0",
"@codemirror/state": "^6.7.0",
"@codemirror/view": "^6.43.4",
"codemirror": "^6.0.2",
"prismjs": "^1.30.0",
"react": "^19.2.7",
"react-dom": "^19.2.7"
},
"devDependencies": {
"@types/node": "^25.9.3",
"@types/prismjs": "^1.26.6",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"esbuild": "^0.28.1",
"prettier": "^3.9.1",
"typescript": "^6.0.3",
"vite": "^8.1.0",
"vitest": "^4.1.7"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}