-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.66 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.66 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
{
"private": true,
"name": "CrystalSQL",
"description": "CrystalSQL is a free and open-source SQL client with a focus on user experience.",
"version": "1.0.0",
"author": "Deguisne Corentin",
"main": "app/background.js",
"scripts": {
"dev": "nextron",
"build": "nextron build",
"postinstall": "electron-builder install-app-deps",
"build:all": "nextron build --all",
"build:win32": "nextron build --win --ia32",
"build:win64": "nextron build --win --x64",
"build:mac": "nextron build --mac --x64",
"build:linux": "nextron build --linux"
},
"dependencies": {
"@dnd-kit/core": "^6.0.8",
"@dnd-kit/sortable": "^7.0.2",
"@fortawesome/fontawesome-svg-core": "^6.4.2",
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@nextui-org/react": "^2.1.13",
"@react-stately/data": "^3.10.3",
"ace-builds": "^1.31.0",
"brace": "^0.11.1",
"electron-serve": "^1.1.0",
"electron-store": "^8.1.0",
"framer-motion": "^10.16.4",
"mariadb": "^3.2.2",
"mysql2": "^3.6.2",
"next-themes": "^0.2.1",
"oracledb": "^6.2.0",
"pg": "^8.11.3",
"pg-hstore": "^2.3.4",
"react-ace": "^10.1.0",
"sequelize": "^6.33.0",
"sqlite3": "^5.1.5",
"tedious": "^16.5.0"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"autoprefixer": "^10.4.16",
"daisyui": "^3.9.3",
"electron": "^26.2.2",
"electron-builder": "^24.6.4",
"next": "^13.2.4",
"nextron": "^8.12.0",
"postcss": "^8.4.30",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2"
}
}