forked from expressjs/csurf
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.7 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
{
"name": "@tekuconcept/nestjs-csrf",
"version": "1.1.1",
"description": "NestJS CSRF Token Module",
"author": "Chris Walker (TekuConcept)",
"private": false,
"license": "MIT",
"bugs": {
"url": "https://github.com/TekuConcept/nestjs-csurf/issues"
},
"homepage": "https://github.com/TekuConcept/nestjs-csurf#readme",
"files": [
"dist",
"index.js",
"index.d.ts"
],
"types": "index.d.ts",
"type": "commonjs",
"scripts": {
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TekuConcept/nestjs-csurf.git"
},
"keywords": [
"csrf",
"tokens",
"middleware",
"express",
"nestjs",
"module"
],
"dependencies": {
"rndm": "^1.2.0",
"uid-safe": "^2.1.5"
},
"peerDependencies": {
"@nestjs/common": "^8.0.0 || ^9.0.0 || ^10.0.0",
"@nestjs/core": "^8.0.0 || ^9.0.0 || ^10.0.0",
"passport": "^0.4.0 || ^0.5.0 || ^0.6.0",
"reflect-metadata": "^0.1.0",
"rxjs": "^7.0.0"
},
"devDependencies": {
"@types/cookie": "^0.5.1",
"@types/cookie-signature": "^1.1.0",
"@types/express": "^4.17.17",
"@types/node": "^20.3.1",
"@types/passport": "^1.0.12",
"@types/rndm": "^1.2.0",
"@types/uid-safe": "^2.1.2",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.3"
}
}