forked from kahoowkh/nestjs-database-trigger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.34 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "nestjs-database-trigger",
"version": "0.0.3",
"description": "A SQL database trigger module for NestJS",
"author": "kahoowkh <kahoowkh@gmail.com> (https://github.com/kahoowkh)",
"contributors": [
"Marco Tse <marcotsept@gmail.com> (https://github.com/Marcotsept)"
],
"license": "MIT",
"repository": "github:kahoowkh/nestjs-database-trigger",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.build.json",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "jest --verbose",
"test:cov": "jest --coverage",
"report": "jest --coverage && coveralls < coverage/lcov.info",
"prepare": "husky install"
},
"peerDependencies": {
"@nestjs/common": "^7.0.0",
"@nestjs/core": "^7.0.0",
"pg": "^8.3.3"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@databases/pg-test": "^3.0.1",
"@nestjs/common": "^7.6.18",
"@nestjs/core": "^7.4.4",
"@nestjs/platform-express": "^7.6.18",
"@nestjs/schematics": "^7.0.0",
"@types/express": "^4.17.3",
"@types/jest": "^26.0.23",
"@types/node": "^15.12.4",
"@types/pg": "^8.6.0",
"@typescript-eslint/eslint-plugin": "4.28.0",
"@typescript-eslint/parser": "4.28.0",
"coveralls": "^3.1.0",
"eslint": "7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"jest": "^27.0.5",
"lint-staged": "^11.0.0",
"pg": "^8.3.3",
"prettier": "^2.3.1",
"reflect-metadata": "^0.1.13",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.3.4"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts"
],
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverage": true,
"coverageDirectory": "./coverage",
"collectCoverageFrom": [
"src/**/*.ts"
],
"testEnvironment": "node",
"globalSetup": "<rootDir>/__tests__/setup.js",
"globalTeardown": "<rootDir>/__tests__/teardown.js"
},
"lint-staged": {
"*.{js,ts}": [
"prettier --write",
"eslint"
]
}
}