-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
94 lines (94 loc) · 2.56 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@kinde-oss/kinde-node-express",
"version": "1.6.0",
"description": "Kinde SDK for traditional Node.js Express web apps that run on the server",
"main": "dist-cjs/index.cjs",
"module": "dist/index.js",
"types": "dist/types/index.d.ts",
"type": "module",
"exports": {
".": {
"require": {
"types": "./dist/types/index.d.ts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/types/index.d.ts",
"default": "./dist/index.esm.js"
}
}
},
"repository": {
"type": "git",
"url": "https://github.com/kinde-oss/kinde-node-express"
},
"bugs": "https://github.com/kinde-oss/kinde-node-express",
"homepage": "https://kinde.com",
"license": "MIT",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint-staged": "lint-staged",
"prettier": "prettier -c .",
"prettier:write": "prettier --write .",
"format": "npm run lint:fix && npm run prettier:write",
"build": "rm -rf ./dist && rollup -c",
"test": "jest --passWithNoTests ."
},
"author": {
"name": "Kinde",
"email": "[email protected]",
"url": "https://kinde.com"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@tsconfig/node19": "^19.1.2",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.0",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.5",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.55.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"nodemon": "^2.0.15",
"prettier": "^3.2.5",
"rollup": "^4.18.0",
"supertest": "^7.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"vite": "^5.2.12",
"vite-plugin-dts": "^3.9.1"
},
"keywords": [
"Kinde",
"login",
"Regular web app authentication",
"Express"
],
"files": [
"dist",
"dist-cjs",
"LICENCE.md"
],
"private": false,
"dependencies": {
"@kinde-oss/kinde-node-auth-utils": "^0.0.7",
"@kinde-oss/kinde-typescript-sdk": "^2.9.1",
"@kinde/jwt-validator": "^0.3.0",
"@rollup/plugin-json": "^6.1.0",
"aws-jwt-verify": "^3.4.0",
"express": "^4.21.2",
"express-session": "^1.18.1"
}
}