-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.3 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.3 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
{
"name": "sqlite-gui-node",
"version": "1.4.0",
"description": "GUI for Node js SQLite databases",
"main": "dist/index.js",
"scripts": {
"start": "nodemon dist/app.js",
"dev": "ts-node-dev --respawn --transpile-only src/app.ts",
"test": "jest src/tests",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AzouKr/sqlite-gui-node.git"
},
"keywords": [
"SQLite",
"GUI",
"Node js",
"Node",
"Interface",
"SQL",
"Mysql",
"database",
"Query",
"Queries",
"Typescript"
],
"author": "AZOUKR",
"license": "MIT",
"dependencies": {
"body-parser": "^1.20.2",
"bootstrap": "^5.3.3",
"ejs": "^3.1.10",
"express": "^4.19.2",
"nodemon": "^3.1.0",
"sqlite3": "^5.1.7",
"winston": "^3.13.0"
},
"bugs": {
"url": "https://github.com/AzouKr/sqlite-gui/issues"
},
"homepage": "https://github.com/AzouKr/sqlite-gui#readme",
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/preset-env": "^7.24.5",
"@babel/preset-typescript": "^7.24.1",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.12",
"jest": "^29.7.0",
"supertest": "^7.0.0",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.5"
}
}