-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
70 lines (70 loc) · 3 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"dependencies": {
"@popperjs/core": "^2.11.8",
"bootstrap": "5.3.3",
"plotly.js-basic-dist": "^2.32.0",
"plotly.js-dist": "^2.32.0",
"prismjs": "^1.29.0",
"react": "^18.3.1",
"react-bootstrap": "^2.10.2",
"react-confirm-alert": "^3.0.6",
"react-data-grid": "^7.0.0-beta.43",
"react-dom": "^18.3.1",
"react-dropdown-select": "^4.11.2",
"react-modal-image": "^2.6.0",
"react-plotly.js": "^2.6.0",
"react-simple-code-editor": "^0.13.1",
"sql-formatter": "^15.3.1"
},
"name": "dbhub.io",
"version": "0.5.0",
"description": "A cloud for SQLite databases, with special integration for DB Browser for SQLite",
"main": "index.js",
"scripts": {
"build": "./build_dbhub.sh",
"clean": "./build_dbhub.sh clean",
"cypress:install": "./node_modules/.bin/cypress install",
"cypress:open": "./node_modules/.bin/cypress open >/dev/null 2>&1 &",
"cypress:test": "./node_modules/.bin/cypress run",
"cypress:testff": "./node_modules/.bin/cypress run -b firefox",
"docker:attach": "docker attach dbhub-build",
"docker:build": "docker build --tag dbhub-build docker",
"docker:clearcache": "docker exec -it dbhub-build memflush -s 127.0.0.1:11211",
"docker:debug": "docker exec -it dbhub-build /bin/sh /usr/local/bin/debug.sh",
"docker:emptydb": "docker exec -it dbhub-build pkill dbhub- && docker exec -itu postgres dbhub-build sh -c 'dropdb dbhub && createdb -O dbhub dbhub'",
"docker:exec": "docker exec -it dbhub-build /bin/sh",
"docker:github": "docker run -itd --rm --name dbhub-build -p 9443-9445:9443-9445/tcp --mount type=bind,src=\"$(pwd)\",target=/dbhub.io dbhub-build:latest",
"docker:psql": "docker exec -it dbhub-build psql -U dbhub dbhub",
"docker:recompile": "docker exec -it dbhub-build /bin/sh /usr/local/bin/compile.sh",
"docker:restart": "docker exec -it dbhub-build /bin/sh /usr/local/bin/restart.sh",
"docker:rm": "docker image rm dbhub-build",
"docker:start": "docker run -itd --rm --name dbhub-build -p 9443-9445:9443-9445/tcp -p 5550:5550/tcp dbhub-build:latest",
"docker:startlocal": "docker run -itd --rm --name dbhub-build --net host --mount type=bind,src=\"$(pwd)\",target=/dbhub.io dbhub-build:latest",
"docker:stop": "docker container stop dbhub-build",
"docker:tail": "docker exec -it dbhub-build tail -F /home/dbhub/output.log"
},
"engines": {
"node": "^20.10.0",
"yarn": "^1.22.19"
},
"repository": "https://github.com/sqlitebrowser/dbhub.io",
"author": "Justin Clift <[email protected]>",
"license": "AGPL-3.0-or-later",
"private": false,
"devDependencies": {
"@babel/cli": "^7.24.5",
"autoprefixer": "^10.4.19",
"babel-preset-react": "^6.24.1",
"babel-preset-react-app": "^10.0.1",
"css-loader": "^7.1.1",
"cypress": "13.3.3",
"postcss": "^8.4.38",
"postcss-loader": "^8.1.1",
"sass": "^1.76.0",
"sass-loader": "^14.2.1",
"style-loader": "^3.3.4",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"yarn": "^1.22.22"
}
}