2019-12-17 20:32:14 +01:00
|
|
|
{
|
|
|
|
|
"name": "auth0-mock-server",
|
|
|
|
|
"version": "1.0.0",
|
|
|
|
|
"description": "Helps us to develop locally with seeded data and keep the flow of auth0.",
|
|
|
|
|
"main": "app.js",
|
|
|
|
|
"scripts": {
|
|
|
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
2019-12-19 06:57:01 +01:00
|
|
|
"dev": "nodemon ./app.js",
|
2023-03-10 13:49:33 +01:00
|
|
|
"start": "node ./app.js",
|
|
|
|
|
"lint:prettier": "prettier --check .",
|
|
|
|
|
"lint": "yarn lint:prettier",
|
|
|
|
|
"lintfix": "prettier --write --list-different ."
|
2019-12-17 20:32:14 +01:00
|
|
|
},
|
|
|
|
|
"author": "",
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"dependencies": {
|
2021-10-26 11:21:07 +00:00
|
|
|
"base64-url": "^2.3.3",
|
2023-02-22 06:52:15 +00:00
|
|
|
"body-parser": "^1.20.2",
|
2021-10-26 11:21:16 +00:00
|
|
|
"buffer": "^6.0.3",
|
2021-11-17 01:50:43 +00:00
|
|
|
"cookie-parser": "^1.4.6",
|
2019-12-17 20:32:14 +01:00
|
|
|
"cors": "^2.8.3",
|
2022-03-18 01:50:38 +00:00
|
|
|
"debug": "^4.3.4",
|
2022-10-09 06:52:35 +00:00
|
|
|
"express": "^4.18.2",
|
2022-02-17 01:50:36 +00:00
|
|
|
"https-localhost": "^4.7.1",
|
2022-12-22 06:52:39 +00:00
|
|
|
"jsonwebtoken": "^9.0.0",
|
2022-03-30 01:50:42 +00:00
|
|
|
"node-forge": "^1.3.1",
|
2021-10-26 11:21:38 +00:00
|
|
|
"node-rsa": "^1.1.1",
|
2023-03-23 06:52:58 +00:00
|
|
|
"nodemon": "^2.0.22",
|
2019-12-17 20:32:14 +01:00
|
|
|
"serve-favicon": "^2.4.2"
|
2023-03-10 13:49:33 +01:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2023-04-24 06:52:34 +00:00
|
|
|
"prettier": "^2.8.8"
|
2019-12-17 20:32:14 +01:00
|
|
|
}
|
|
|
|
|
}
|