forked from nestjs/jwt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.66 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
{
"name": "@nestjs/jwt",
"version": "10.0.2",
"description": "Nest - modern, fast, powerful node.js web framework (@jwt)",
"author": "Kamil Mysliwiec",
"license": "MIT",
"scripts": {
"format": "prettier --write \"**/*.ts\"",
"lint": "eslint \"lib/**/*.ts\" --fix",
"test": "jest --config=jest.json",
"test:watch": "jest --config=jest.json --watch",
"test:coverage": "jest --config=jest.json --coverage --coverageDirectory=coverage",
"build": "rm -rf dist && tsc -p tsconfig.json",
"precommit": "lint-staged",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"prerelease": "npm run build",
"release": "release-it",
"prepare": "husky install"
},
"peerDependencies": {
"@nestjs/common": "^8.0.0 || ^9.0.0"
},
"devDependencies": {
"@commitlint/cli": "17.5.0",
"@commitlint/config-angular": "17.4.4",
"jest": "29.5.0",
"ts-jest": "29.0.5",
"reflect-metadata": "0.1.13",
"@nestjs/core": "9.3.12",
"@nestjs/testing": "9.3.12",
"@types/jest": "29.5.0",
"@typescript-eslint/eslint-plugin": "5.56.0",
"@typescript-eslint/parser": "5.56.0",
"eslint": "8.36.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"@nestjs/common": "9.3.12",
"@types/node": "18.15.5",
"husky": "8.0.3",
"lint-staged": "13.2.0",
"prettier": "2.8.6",
"release-it": "15.9.1",
"typescript": "5.0.2"
},
"dependencies": {
"@types/jsonwebtoken": "9.0.1",
"jsonwebtoken": "9.0.0"
},
"lint-staged": {
"**/*.{ts,json}": []
},
"repository": {
"type": "git",
"url": "https://github.com/nestjs/jwt"
}
}