-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.1 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
{
"name": "implement-express-openid-connect",
"version": "1.0.0",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/alexlop29/implement-express-openid-connect.git"
},
"author": {
"name": "alexlop29",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-openid-connect": "^2.17.1",
"tslint": "^6.1.3",
"typescript": "^5.2.2"
},
"bugs": {
"url": "https://github.com/alexlop29/implement-express-openid-connect/issues"
},
"homepage": "https://github.com/alexlop29/implement-express-openid-connect#readme",
"files": [
"./bin/*",
"./lib/*"
],
"typings": "./lib/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "tslint -c tslint.json src/**/*.ts",
"prepublish": "npm run build",
"format": "npx prettier . --write",
"start-debug": "DEBUG=express:* nodemon ./src/index.ts"
},
"devDependencies": {
"@types/express": "^4.17.21",
"nodemon": "^3.0.1",
"prettier": "3.0.3",
"ts-node": "^10.9.1"
}
}