-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 881 Bytes
/
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
{
"name": "notes-service",
"module": "index.ts",
"type": "module",
"private": true,
"scripts": {
"start": "bun --inspect run index.ts",
"build": "mkdir out ; bun build --compile --minify --sourcemap --external knex --external pg --external pg-query-stream tslib ./index.ts --outfile ./out/notes-sevice-exec",
"exec": "./out/notes-sevice-exec",
"migrate": "bun run migrate.ts",
"docker:build": "docker-compose build",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/bun": "latest",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"awilix": "^12.0.4",
"cors": "^2.8.5",
"express": "^4.21.2",
"knex": "^3.1.0",
"pg": "^8.13.3",
"pg-query-stream": "^4.7.3",
"tslib": "^2.8.1"
}
}