Files
auth0mock/package.json
T
2025-09-08 14:01:12 +00:00

32 lines
818 B
JSON

{
"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",
"dev": "nodemon ./app.js",
"start": "node ./app.js",
"lint:prettier": "prettier --check .",
"lint": "yarn lint:prettier",
"lintfix": "prettier --write --list-different ."
},
"author": "",
"license": "MIT",
"dependencies": {
"body-parser": "2.2.0",
"cookie-parser": "1.4.7",
"cors": "2.8.5",
"debug": "4.4.2",
"express": "5.1.0",
"https-localhost": "4.7.1",
"jsonwebtoken": "9.0.2",
"node-jose": "2.2.0",
"nodemon": "3.1.10",
"serve-favicon": "2.5.1"
},
"devDependencies": {
"prettier": "3.6.2"
}
}