-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 801 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 801 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
{
"name": "postgres-queue-fifo",
"version": "1.0.0",
"description": "Proof of concept for group concurrency controlled job queue in PostgreSQL",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"test": "ava",
"prisma:push": "prisma db push",
"prisma:gen": "prisma migrate dev --name",
"kysely:gen": "kysely-codegen"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.5.1",
"@types/pg": "^8.10.2",
"ava": "^5.3.1",
"dotenv": "^16.3.1",
"kysely": "^0.26.1",
"kysely-codegen": "^0.10.1",
"pg": "^8.11.3",
"prettier": "^3.0.2",
"prisma": "^5.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"peerDependencies": {
"kysely": "^0.26.1",
"pg": "^8.11.3"
}
}