-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 1.09 KB
/
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
38
39
40
41
{
"name": "express-prisma-cerbos",
"description": "",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "nodemon --watch 'src/**' --ext 'ts,json' --ignore 'src/**/*.spec.ts' --exec 'ts-node src/index.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cerbos/express-prisma-cerbos.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/cerbos/express-prisma-cerbos/issues"
},
"homepage": "https://github.com/cerbos/express-prisma-cerbos#readme",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/http-auth": "^4.1.1",
"@types/node": "^20.0.0",
"prisma": "^5.0.0",
"ts-node": "^10.8.1",
"typescript": "^5.0.0"
},
"dependencies": {
"@cerbos/grpc": "^0.20.0",
"@cerbos/orm-prisma": "^1.0.0-alpha.0",
"@prisma/client": "^5.0.0",
"cerbos-orm-prisma": "^0.0.2",
"express": "^4.17.3",
"express-basic-auth": "^1.2.0",
"http-auth": "^4.1.9",
"http-auth-connect": "^1.0.5",
"nodemon": "^3.0.0"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
}
}