-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
54 lines (54 loc) · 1.23 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
{
"name": "nest-transact",
"version": "9.1.2",
"description": "This package give you a simplest possibility to use transactions with Nestjs",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rimraf ./dist && npm i && npm-install-peers && tsc --project tsconfig.build.json"
},
"repository": {
"type": "git",
"url": "git@github.com:alphamikle/nest_transact.git"
},
"keywords": [
"nest",
"nestjs",
"transactions",
"transact",
"sql",
"postgresql",
"mysql",
"mariadb",
"typeorm"
],
"author": "alphamikle@gmail.com",
"license": "MIT",
"devDependencies": {
"@nestjs/common": "^9.0.8",
"@nestjs/core": "^9.0.8",
"@types/lodash.xor": "^4.5.7",
"@types/node": "^18.0.0",
"@types/validator": "^13.7.5",
"npm-install-peers": "^1.2.2",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.5.6",
"typeorm": "^0.3.7",
"typescript": "^4.7.4"
},
"peerDependencies": {
"@nestjs/common": "^9.0.8",
"@nestjs/core": "^9.0.8",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.6",
"typeorm": "^0.3.7"
},
"files": [
"lib",
"dist"
],
"dependencies": {
"lodash.xor": "^4.5.0"
}
}