generated from ntheanh201/nestjs-package-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2 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
{
"name": "@ntheanh201/nestjs-sequelize-pagination",
"version": "1.1.0",
"description": "NestJS Sequelize Pagination",
"author": "The Anh Nguyen <[email protected]>",
"license": "MIT",
"readmeFilename": "README.md",
"main": "dist/index.js",
"files": [
"dist/**/*",
"*.md"
],
"scripts": {
"start:dev": "tsc -w",
"build": "tsc",
"prepare": "npm run build",
"format": "prettier --write \"lib/**/*.ts\"",
"lint": "tslint -p tsconfig.json -c tslint.json",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:e2e": "jest --config ./test/jest-e2e.json"
},
"keywords": [
"nestjs sequelize pagination ntheanh201"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/ntheanh201/nestjs-sequelize-pagination"
},
"bugs": "https://github.com/ntheanh201/nestjs-sequelize-pagination",
"peerDependencies": {
"@nestjs/common": "^9.1.2"
},
"dependencies": {
"@nestjs/swagger": "^6.1.2",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@nestjs/common": "^9.1.2",
"@nestjs/core": "^9.1.2",
"@nestjs/platform-express": "^9.1.2",
"@nestjs/sequelize": "^9.0.0",
"@nestjs/testing": "9.1.2",
"@types/express": "4.17.14",
"@types/jest": "29.0.3",
"@types/node": "18.7.23",
"@types/supertest": "2.0.12",
"class-validator": "^0.13.2",
"jest": "29.0.3",
"prettier": "2.7.1",
"rxjs": "^7.5.7",
"sequelize": "^6.23.2",
"sequelize-typescript": "^2.1.3",
"supertest": "6.2.4",
"ts-jest": "29.0.2",
"ts-node": "10.9.1",
"tsc-watch": "5.0.3",
"tsconfig-paths": "4.1.0",
"tslint": "5.20.1",
"typescript": "4.8.4"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "lib",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}