-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1017 Bytes
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1017 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "orbit-backend",
"version": "1.0.0",
"main": "src/server.ts",
"repository": "https://github.com/diozenio/orbit-backend",
"author": "diozenio <d.dionisiobsl@gmail.com>",
"license": "MIT",
"tsup": {
"entry": [
"src"
],
"outdir": "build",
"format": [
"esm"
],
"splitting": false,
"clean": true
},
"scripts": {
"dev": "tsx watch src/http/server.ts",
"start": "node build/http/server",
"lint": "eslint --fix src --ext .ts",
"build": "tsup --out-dir build",
"migrate": "prisma migrate dev",
"prisma": "prisma studio"
},
"dependencies": {
"@fastify/cors": "^11.0.1",
"@prisma/client": "^6.5.0",
"dayjs": "^1.11.13",
"fastify": "^5.2.2",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^22.13.17",
"dotenv": "^16.4.7",
"eslint": "^9.23.0",
"prisma": "^6.5.0",
"tsup": "^8.4.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
},
"engines": {
"node": ">=18.0.0"
}
}