-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.34 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
42
43
{
"name": "express-mongoose-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'",
"test": "cerbos run --log-level=error --set=storage.disk.directory=./cerbos/policies --set=telemetry.disabled=true -- jest src/**.test.ts --detectOpenHandles",
"mongo": "docker run --rm --name mongodb -p 27017:27017 mongo:latest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cerbos/express-mongoose-cerbos.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/cerbos/express-mongoose-cerbos/issues"
},
"homepage": "https://github.com/cerbos/express-mongoose-cerbos#readme",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/http-auth": "^4.1.1",
"@types/jest": "^29.5.3",
"@types/node": "^20.0.0",
"@types/supertest": "^6.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.0"
},
"dependencies": {
"@cerbos/grpc": "^0.19.0",
"@cerbos/orm-mongoose": "^0.1.2",
"express": "^4.17.3",
"express-basic-auth": "^1.2.0",
"http-auth": "^4.1.9",
"http-auth-connect": "^1.0.5",
"jest": "^29.6.1",
"mongoose": "^8.0.0",
"nodemon": "^3.0.0",
"supertest": "^7.0.0",
"ts-jest": "^29.1.1"
}
}