forked from jasonsoft/nestjs-common
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·90 lines (90 loc) · 2.32 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
85
86
87
88
89
90
{
"name": "@jasonsoft/nestjs-common",
"version": "1.1.23",
"description": "Nestjs common extension for Nest framework (node.js)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf -rf dist && tsc -p tsconfig.build.json",
"format": "prettier **/**/*.ts --ignore-path ./.prettierignore --write",
"lint": "eslint 'lib/**/*.ts' --fix",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jasonsoft/nestjs-common.git"
},
"keywords": [
"@jasonsoft/nestjs-common",
"jasonsoft",
"nestjs-common",
"nestjs",
"common",
"typeorm",
"pagination",
"jwt",
"authorization",
"authentication"
],
"author": "Jason Song (成长的小猪)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jasonsoft/nestjs-common/issues"
},
"homepage": "https://github.com/jasonsoft/nestjs-common#readme",
"devDependencies": {
"@nestjs/common": "9.2.1",
"@types/bcrypt": "5.0.0",
"@types/jest": "^29.2.4",
"@types/js-yaml": "4.0.5",
"@types/jsonwebtoken": "8.5.9",
"@types/node": "18.11.12",
"@types/uuid": "9.0.0",
"@typescript-eslint/eslint-plugin": "5.46.0",
"@typescript-eslint/parser": "5.46.0",
"class-transformer": "0.5.1",
"class-validator": "0.13.2",
"eslint": "8.29.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"jest": "^29.3.1",
"prettier": "2.8.1",
"rimraf": "3.0.2",
"rxjs": "7.6.0",
"ts-jest": "^29.0.3",
"typeorm": "0.3.11",
"typescript": "4.9.4"
},
"peerDependencies": {
"@nestjs/common": "^7.0.0 || ^8.0.0 || ^9.0.0",
"class-transformer": ">=0.2.3",
"class-validator": ">=0.10.0",
"rxjs": ">=6.0.0",
"typeorm": "^0.2.7 || ^0.3.0",
"uuid": "^8.0.0 || ^9.0.0"
},
"dependencies": {
"bcrypt": "5.1.0",
"js-yaml": "4.1.0",
"jsonwebtoken": "8.5.1"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "lib",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}