-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.04 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
{
"name": "@cjr-unb/super-crud",
"version": "1.3.5",
"description": "An abstraction of a CRUD using Prisma for NestJS",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf dist && tsc",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CJR-UnB/nestjs-prisma-super-crud.git"
},
"files": [
"dist/crud/*",
"dist/index.d.ts",
"dist/index.js",
"dist/tsconfig.json",
"README"
],
"author": "Edson Sales",
"contributors": [
"Marcelo Junqueira"
],
"license": "MIT",
"dependencies": {
"@nestjs/common": "^9.2.1",
"@prisma/client": "^4.8.0",
"@types/node": "^18.11.18",
"prisma": "^4.8.0",
"rimraf": "^3.0.2",
"rxjs": "^7.8.0",
"typescript": "^4.9.4"
},
"devDependencies": {
"@types/jest": "^29.2.4",
"jest": "^29.3.1",
"ts-jest": "^29.0.3"
},
"keywords": [
"nestjs",
"prisma",
"crud",
"api",
"nest"
]
}