-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 913 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
34
35
36
37
{
"name": "flat-rbac",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "tsx watch src/main.ts | pino-pretty",
"format:check": "biome format .",
"format:fix": "biome format . --write",
"lint:check": "biome lint .",
"lint:fix": "biome lint . --apply",
"biome:check": "biome check .",
"biome:fix": "biome check . --apply"
},
"keywords": [],
"author": "",
"license": "AGPL-3.0-or-later",
"devDependencies": {
"@biomejs/biome": "1.5.3",
"@types/node": "^20.11.17",
"@types/pg": "^8.11.0",
"kanel": "^3.8.7",
"kanel-kysely": "^0.3.3",
"pino-pretty": "^10.3.1",
"tsx": "^4.7.1",
"typescript": "^5.3.3"
},
"dependencies": {
"dotenv": "^16.4.4",
"fastify": "^4.26.1",
"fastify-type-provider-zod": "^1.1.9",
"graphile-migrate": "^1.4.1",
"kysely": "^0.27.2",
"zod": "^3.22.4"
}
}