-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.37 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": "nestjs-cryptography",
"version": "3.1.0",
"author": {
"name": "Marc Jorge Gonzalez",
"url": "https://github.com/mjorgegulab"
},
"license": "MIT",
"description": "Secure NestJS cryptography module 🔐",
"homepage": "https://nestjs-cryptography.thewolfx41.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/mjorgegulab/nestjs-cryptography.git"
},
"bugs": {
"url": "https://github.com/mjorgegulab/nestjs-cryptography/issues"
},
"scripts": {
"build": "rimraf -rf dist && tsc -p tsconfig.json",
"format": "prettier --write \"lib/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint --fix",
"publish:npm": "npm publish --access=public",
"prepublish": "yarn run build",
"prepack": "yarn run build",
"test": "jest",
"test:cov": "jest --coverage",
"all": "yarn format && yarn lint && yarn test && yarn prepack"
},
"dependencies": {
"argon2": "^0.41.1"
},
"devDependencies": {
"@nestjs/cli": "^10.4.5",
"@nestjs/common": "^10.4.4",
"@nestjs/core": "^10.4.4",
"@nestjs/platform-express": "^10.4.4",
"@nestjs/schematics": "^10.1.4",
"@nestjs/testing": "^10.4.4",
"@types/express": "^4.17.21",
"@types/jest": "29.5.13",
"@types/node": "22.7.5",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "29.7.0",
"prettier": "^3.3.3",
"reflect-metadata": "^0.2.2",
"rimraf": "^6.0.1",
"rxjs": "^7.8.1",
"source-map-support": "^0.5.21",
"supertest": "^7.0.0",
"ts-jest": "29.2.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "4.2.0",
"typescript": "^5.6.3"
},
"peerDependencies": {
"@nestjs/common": "^9.0.0 || ^10.0.0",
"@nestjs/core": "^9.0.0 || ^10.0.0"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/wiki/"
],
"modulePathIgnorePatterns": [
"/wiki/"
],
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "./",
"testMatch": [
"**/test/**/?(*.)+(spec|test).[tj]s?(x)"
],
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.service.ts"
],
"testEnvironment": "node"
}
}