-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.16 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
{
"name": "@dreamtexx/nestjs-crypto",
"version": "0.0.4",
"description": "Simple Crypto Module for NestJS",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --config ./tests/jest-e2e.json --runInBand",
"build": "rm -rf dist && tsc -p tsconfig.json",
"format": "prettier --write \"**/*.ts\"",
"lint": "eslint 'src/**/*.ts' --fix",
"prepublish": "npm run build"
},
"keywords": [
"crypto",
"nestjs"
],
"author": "DreamTexX",
"license": "ISC",
"dependencies": {},
"devDependencies": {
"@nestjs/common": "^10.3.8",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1",
"@types/node": "^20.12.7",
"typescript": "^5.4.5",
"prettier": "^3.2.5",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1"
},
"peerDependencies": {
"@nestjs/common": "^10.3.8",
"@nestjs/core": "^10.3.8",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1"
},
"repository": {
"type": "git",
"url": "https://github.com/DreamTexX/nestjs-crypto.git"
}
}