-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.35 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
44
45
46
47
48
49
50
51
{
"name": "@cerebruminc/yates",
"version": "3.6.1",
"description": "Role based access control for Prisma Apps",
"main": "dist/index.js",
"files": [
"CHANGELOG.md",
"dist",
"images"
],
"scripts": {
"generate": "prisma generate",
"build": "rimraf dist && tsc -p tsconfig.build.json",
"test": "npm run lint",
"lint": "biome check .",
"lint:fix": "biome check . --apply",
"test:types": "tsc --noEmit",
"test:integration": "jest --runInBand test/integration",
"test:compose:integration": "docker compose -f docker-compose.yml --profile with-sut up db sut --exit-code-from sut",
"setup": "prisma generate && prisma migrate dev",
"prepublishOnly": "npm run build"
},
"author": "Cerebrum <[email protected]> (https://cerebrum.com)",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "1.5.3",
"@prisma/client": "^5.11.0",
"@types/cls-hooked": "^4.3.3",
"@types/jest": "^29.2.6",
"@types/lodash": "^4.14.191",
"@types/uuid": "^9.0.0",
"cls-hooked": "^4.2.2",
"jest": "^29.3.1",
"prisma": "^5.0.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.0.5",
"typescript": "^5.3.3",
"uuid": "^9.0.0"
},
"dependencies": {
"@types/debug": "^4.1.12",
"debug": "^4.3.4",
"lodash": "^4.17.21",
"node-sql-parser": "^4.12.0",
"type-fest": "^4.10.3"
},
"peerDependencies": {
"@prisma/client": "^5.11.0",
"prisma": "^5.11.0"
}
}