-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
75 lines (75 loc) · 2.04 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
67
68
69
70
71
72
73
74
75
{
"name": "nestjs-cookie-session",
"version": "3.0.1",
"description": "Idiomatic NestJS module for cookie session",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"test": "jest --verbose -i --detectOpenHandles",
"lint": "tsc --noemit && eslint \"{src,__tests__}/**/*.ts\" --fix",
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.build.json",
"prepublishOnly": "npm run build && cp -r ./dist/* .",
"postpublish": "git clean -fd"
},
"files": [
"*.{js,d.ts}",
"!jest.config.js",
"!.eslintrc.js"
],
"engineStrict": true,
"engines": {
"node": ">=16"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iamolegga/nestjs-cookie-session.git"
},
"keywords": [
"nest",
"nestjs",
"nest.js",
"session",
"cookie",
"cookie-session"
],
"author": "iamolegga <[email protected]> (http://github.com/iamolegga)",
"license": "MIT",
"bugs": {
"url": "https://github.com/iamolegga/nestjs-cookie-session/issues"
},
"homepage": "https://github.com/iamolegga/nestjs-cookie-session#readme",
"dependencies": {
"create-nestjs-middleware-module": "^0.3.1"
},
"devDependencies": {
"@nestjs/common": "^10.1.3",
"@nestjs/core": "^10.1.3",
"@nestjs/platform-express": "^10.1.3",
"@types/cookie-session": "^2.0.44",
"@types/jest": "^29.5.3",
"@types/node": "^22.0.0",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.4.0",
"cookie-session": "^2.0.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "29.7.0",
"prettier": "^3.0.2",
"reflect-metadata": "^0.1.13",
"rimraf": "^6.0.0",
"rxjs": "^7.8.1",
"supertest": "^7.0.0",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"typescript": "^4.3.5"
},
"peerDependencies": {
"@types/cookie-session": "^2.0.37",
"cookie-session": "^2.0.0"
}
}