-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.14 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": "@techsavvyash/dynamo-prisma",
"version": "0.0.4",
"description": "Create Prisma Models Dynamically",
"main": "dist/src/index.js",
"files": [
"dist"
],
"homepage": "https://github.com/techsavvyash/dynamo-prisma",
"scripts": {
"build": "tsc",
"test": "jest",
"cleanup": "rm -r ./prisma"
},
"author": "Himanshu, Sooraj, Yash",
"license": "MIT",
"dependencies": {
"@nestjs/testing": "^10.3.3",
"@prisma/client": "5.12.1",
"@types/es6-promise": "^3.3.0",
"prisma-schema-dsl": "^2.2.0",
"prisma-schema-dsl-types": "^1.1.2",
"@prisma/internals": "^5.12.1",
"@prisma/sdk": "^4.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"prisma": "5.12.1",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": ".",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": ".",
"testEnvironment": "node"
}
}