forked from martin-pabst/SQL-IDE
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 876 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 876 Bytes
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
{
"name": "sql-online",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --port 4000 --host",
"build": "tsc && vite build && vite build --config vite.config-embedded.js",
"build-ide": "tsc && vite build",
"build-embedded": "tsc && vite build --config vite.config-embedded.js",
"preview": "npm run build && vite preview --port 4000 --host",
"build_tools": "tsc --project tsconfig_development-tools.json"
},
"devDependencies": {
"@types/diff": "^5.0.2",
"@types/diff-match-patch": "^1.0.32",
"@types/jquery": "^3.5.16",
"@types/lz-string": "^1.3.34",
"@types/sql.js": "^1.4.4",
"typescript": "^4.9.3",
"vite": "^4.1.0"
},
"dependencies": {
"diff": "^5.1.0",
"diff-match-patch": "^1.0.5",
"jquery": "^3.6.3",
"lz-string": "^1.4.4",
"sql.js": "^1.8.0"
}
}