-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 888 Bytes
/
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
{
"name": "jwt-verifier",
"version": "1.0.0",
"description": "",
"main": "src/server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node --nouse-idle-notification --expose-gc --max-old-space-size=8192 src/test.js",
"lint": "eslint --ext .js --ignore-path .gitignore ."
},
"lint-staged": {
"*.{js}": "eslint"
},
"type": "module",
"author": "Evolutio",
"license": "MIT",
"dependencies": {
"babel-eslint": "^10.1.0",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"dotenv": "^8.2.0",
"eslint": "^7.20.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"express": "^4.17.1",
"express-prom-bundle": "^6.3.4",
"jsonwebtoken": "^8.5.1",
"openid-client": "^4.4.1",
"prettier": "^2.2.1",
"uri-js": "^4.4.1",
"winston": "^3.3.3"
}
}