-
-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.57 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
58
59
60
61
62
{
"name": "evolutility-server-node",
"version": "1.2.2",
"description": "Framework for building REST endpoints for CRUD with models rather than code.",
"license": "AGPL-3.0",
"homepage": "https://github.com/evoluteur/evolutility-server-node",
"author": "Olivier Giulieri (https://evoluteur.github.io/)",
"copyright": "(c) 2026 Olivier Giulieri",
"repository": {
"type": "git",
"url": "git://github.com/evoluteur/evolutility-server-node.git"
},
"type": "module",
"bugs": "https://github.com/evoluteur/evolutility-server-node/issues",
"scripts": {
"start": "node --watch ./bin/www.ts",
"makedb": "node scripts/setup/database.ts",
"typecheck": "tsc --noEmit",
"typecheck:watch": "tsc --noEmit --watch"
},
"dependencies": {
"debug": "~4.4.3",
"express": "^5.2.1",
"express-rate-limit": "^8.5.2",
"formidable": "~3.5.4",
"helmet": "~7.1.0",
"pg": "^8.21.0",
"pg-connection-string": "~2.13.0",
"pg-promise": "^11.15.0",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"url": "^0.11.4"
},
"devDependencies": {
"@types/debug": "^4.1.13",
"@types/express": "^5.0.6",
"@types/formidable": "^3.5.1",
"@types/node": "^26.0.1",
"@types/pg": "^8.20.0",
"@types/pg-connection-string": "^0.1.1",
"typescript": "^6.0.3"
},
"keywords": [
"CRUD",
"low-code",
"no-code",
"model-driven",
"MDA",
"platform",
"REST",
"metadata",
"database",
"nodejs",
"ORM",
"SQL",
"generator",
"API",
"postgres",
"typescript",
"evolutility"
]
}