-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1014 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
{
"name": "@cerebruminc/prisma-stable-sort-middleware",
"version": "2.0.1",
"description": "Guarantees stable sort order for all Prisma queries",
"main": "dist/index.js",
"scripts": {
"generate": "prisma generate",
"build": "tsc",
"test": "rome ci src",
"test:integration": "jest 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": {
"@prisma/client": "^5.0.0",
"@types/jest": "^29.2.6",
"@types/lodash": "^4.14.191",
"@types/uuid": "^9.0.0",
"jest": "^29.3.1",
"prisma": "^5.0.0",
"rome": "^11.0.0",
"ts-jest": "^29.0.5",
"typescript": "^4.9.4",
"uuid": "^9.0.0"
},
"peerDependencies": {
"@prisma/client": "^5.0.0",
"prisma": "^5.0.0"
}
}