-
Notifications
You must be signed in to change notification settings - Fork 366
/
package.json
43 lines (43 loc) · 1.4 KB
/
package.json
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
{
"name": "django-sql-explorer",
"description": "Django SQL Explorer",
"type": "module",
"scripts": {
"dev": "export APP_VERSION=$(python -c 'from explorer import __version__; print(__version__)') && npx vite --config vite.config.mjs",
"build": "export APP_VERSION=$(python -c 'from explorer import __version__; print(__version__)') && npx vite build --config vite.config.mjs",
"preview": "export APP_VERSION=$(python -c 'from explorer import __version__; print(__version__)') && npx vite preview --config vite.config.mjs"
},
"devDependencies": {
"sass": "~1.69.0",
"vite": "^5.4.6",
"vite-plugin-copy": "^0.1.6",
"vite-plugin-static-copy": "^1.0.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/explorerhq/sql-explorer.git"
},
"author": "Chris Clark",
"license": "MIT",
"bugs": {
"url": "https://github.com/explorerhq/sql-explorer/issues"
},
"homepage": "https://www.sqlexplorer.io",
"dependencies": {
"@codemirror/lang-sql": "^6.5.4",
"@codemirror/language-data": "^6.3.1",
"bootstrap": "^5.0.1",
"bootstrap-icons": "^1.11.2",
"choices.js": "^10.2.0",
"codemirror": "^6.0.1",
"cookiejs": "^2.1.3",
"dompurify": "^3.1.3",
"jquery": "^3.7.1",
"list.js": "^2.3.1",
"marked": "^11.1.1",
"sortablejs": "^1.15.2"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.18.1"
}
}