-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 943 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 943 Bytes
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
{
"name": "baselyra",
"version": "0.1.0",
"description": "Baselyra — a lightweight, self-hosted backend-as-a-service. Postgres, auth, storage, realtime and an auto-generated REST API in one process.",
"license": "Apache-2.0",
"type": "module",
"engines": { "node": ">=22" },
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js",
"dev": "node --watch --experimental-strip-types src/index.ts",
"test": "node --experimental-strip-types --test test/*.test.ts"
},
"dependencies": {
"@fastify/cors": "^10.0.1",
"@fastify/multipart": "^9.0.1",
"@fastify/rate-limit": "^10.2.1",
"@fastify/static": "^8.0.3",
"@fastify/websocket": "^11.0.1",
"fastify": "^5.2.0",
"nodemailer": "^6.9.16",
"pg": "^8.13.1"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/nodemailer": "^6.4.17",
"@types/pg": "^8.11.10",
"typescript": "^5.7.2"
}
}