forked from huy97/csrf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.27 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
{
"name": "ncsrf",
"version": "1.0.3",
"description": "Simple NestJS CSRF verify token",
"main": "dist/index.js",
"types": "dist/index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf dist && tsc",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/huy97/csrf.git"
},
"keywords": [
"csrf",
"nestjs"
],
"author": "Huy Le Tien",
"license": "MIT",
"bugs": {
"url": "https://github.com/huy97/csrf/issues"
},
"homepage": "https://github.com/huy97/csrf#readme",
"dependencies": {
"cookie": "^0.4.1",
"cookie-signature": "^1.1.0",
"csrf": "^3.1.0"
},
"peerDependencies": {
"@nestjs/common": "^8.4.4",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.5"
},
"devDependencies": {
"@nestjs/common": "^8.4.4",
"@types/express": "^4.17.13",
"@types/node": "^18.7.14",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-import": "^2.22.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.5.5",
"typescript": "^4.8.2"
}
}