forked from j0lvera/next-csrf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.61 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
{
"name": "next-csrf",
"version": "0.1.2",
"description": "CSRF mitigation library for Next.js",
"main": "dist/next-csrf.js",
"module": "dist/next-csrf.esm.js",
"types": "@types/",
"source": "src/index.ts",
"repository": "https://github.com/j0lv3r4/next-csrf",
"author": "Juan Olvera",
"license": "MIT",
"scripts": {
"build": "npm run types && rollup -c",
"dev": "rollup -w",
"test": "jest",
"types": "tsc --emitDeclarationOnly --declaration --outDir @types",
"release": "cross-var npm run build && cross-var git commit -am $npm_package_version && cross-var git tag $npm_package_version && git push && git push --tags && npm publish"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^8.1.0",
"@rollup/plugin-typescript": "^5.0.0",
"@types/cookie": "^0.4.0",
"@types/cookie-signature": "^1.0.3",
"@types/csrf": "^1.3.2",
"@types/jest": "^26.0.3",
"@types/supertest": "^2.0.9",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"eslint": "^7.3.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.21.2",
"jest": "^26.1.0",
"next": "^9.4.4",
"np": "^6.2.4",
"prettier": "^2.0.5",
"rollup": "^2.18.0",
"rollup-plugin-analyzer": "^3.2.3",
"supertest": "^4.0.2",
"ts-jest": "^26.1.1",
"typescript": "^3.9.5"
},
"dependencies": {
"@types/http-errors": "^1.6.3",
"cookie": "^0.4.1",
"cookie-signature": "^1.1.0",
"csrf": "^3.1.0",
"querystring": "^0.2.0"
}
}