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": {
|
2023-02-22 06:52:15 +00:00
|
|
|
"body-parser": "^1.20.2",
|
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",
|
2023-08-31 06:53:06 +00:00
|
|
|
"jsonwebtoken": "^9.0.2",
|
2024-04-08 13:10:20 +02:00
|
|
|
"node-jose": "^2.2.0",
|
2024-02-23 06:53:00 +00:00
|
|
|
"nodemon": "^3.1.0",
|
2019-12-17 20:32:14 +01:00
|
|
|
"serve-favicon": "^2.4.2"
|
2023-03-10 13:49:33 +01:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2024-02-04 06:52:38 +00:00
|
|
|
"prettier": "^3.2.5"
|
2019-12-17 20:32:14 +01:00
|
|
|
}
|
|
|
|
|
}
|