-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.42 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
{
"name": "snapcrud",
"version": "0.1.1",
"description": "A web-based database editor of specified tables and columns",
"keywords": [
"admin",
"backend",
"crud",
"database editor",
"database interface",
"database",
"mysql",
"rapid",
"web"
],
"license": "ISC",
"bin": {
"snapcrud": "./bin/snapcrud.js"
},
"files": [
"bin",
"dist"
],
"type": "module",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/cinnabar-forge/snapcrud.git"
},
"scripts": {
"build": "node esbuild.js",
"build:bundle": "node esbuild.js full",
"build:dev": "tsc",
"dev": "node esbuild.js watch",
"fix": "prettier . --write && eslint --fix .",
"format": "prettier . --write",
"lint": "eslint --fix .",
"prepack": "npm run build",
"start": "node dist/index.js",
"test": "prettier . -c && eslint --max-warnings 0 . && tsc"
},
"dependencies": {
"@cinnabar-forge/utils": "0.2.0",
"clivo": "0.5.2",
"dotenv": "16.4.5",
"express": "4.21.2",
"helmet": "8.0.0",
"knex": "3.1.0",
"mysql2": "3.11.4",
"winston": "3.17.0"
},
"devDependencies": {
"@cinnabar-forge/eslint-plugin": "0.7.3",
"@cinnabar-forge/meta": "0.3.1",
"@types/express": "5.0.0",
"esbuild": "0.24.0",
"typescript": "5.6.3"
},
"engines": {
"node": ">=18.0.0"
},
"pre-commit": [
"test"
]
}