-
-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
63 lines (63 loc) · 2.12 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
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "nestjs-prisma",
"version": "0.23.0",
"description": "Library and schematics to add Prisma integration to a NestJS application",
"scripts": {
"build": "npm run build:lib && npm run build:schematics",
"build:lib": "tsc -p tsconfig.lib.json",
"build:schematics": "tsc -p tsconfig.schematics.json",
"dev:schematics": "tsc -p tsconfig.schematics.json --watch",
"test": "npm run build && jasmine src/**/*_spec.js",
"changelog": "npx conventional-changelog-cli conventional-changelog -p angular -i ./CHANGELOG.md -s",
"rocket": "npm run build && npm publish --tag dev",
"format": "prettier --write \"lib/**/*.ts\" \"schematics/**/*.ts\"",
"lint": "eslint \"{lib,schematics}/**/*.ts\" --fix"
},
"keywords": [
"nestjs",
"prisma",
"schematics"
],
"author": "Marc Stammerjohann",
"license": "MIT",
"main": "./dist/index.js",
"schematics": "./schematics/collection.json",
"repository": {
"type": "git",
"url": "https://github.com/notiz-dev/nestjs-prisma.git"
},
"bugs": {
"url": "https://github.com/notiz-dev/nestjs-prisma/issues"
},
"homepage": "https://github.com/notiz-dev/nestjs-prisma#readme",
"peerDependencies": {
"@nestjs/common": "^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0",
"@prisma/client": "^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0",
"prisma": "^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0"
},
"dependencies": {
"@angular-devkit/core": "^13.3.0",
"@angular-devkit/schematics": "^13.3.0",
"@schematics/angular": "~13.3.0"
},
"devDependencies": {
"@nestjs/common": "10.3.7",
"@nestjs/core": "10.3.7",
"@nestjs/platform-express": "10.3.7",
"@prisma/client": "^5.5.2",
"@types/jasmine": "3.8.2",
"@types/node": "^16.18.25",
"@typescript-eslint/eslint-plugin": "6.9.1",
"@typescript-eslint/parser": "6.9.1",
"eslint": "8.52.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "5.0.1",
"jasmine": "^3.6.3",
"prettier": "3.2.3",
"prettier-plugin-organize-imports": "^3.2.4",
"prisma": "^5.5.2",
"reflect-metadata": "0.1.13",
"rxjs": "^7.8.1",
"typescript": "^5.1.3"
}
}