Files
auth0mock/package.json
T

32 lines
818 B
JSON
Raw Permalink Normal View History

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",
"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": {
"body-parser": "2.2.1",
2024-11-03 16:38:15 +00:00
"cookie-parser": "1.4.7",
"cors": "2.8.5",
"debug": "4.4.3",
"express": "5.2.1",
2024-11-03 16:38:15 +00:00
"https-localhost": "4.7.1",
"jsonwebtoken": "9.0.3",
2024-11-03 16:38:15 +00:00
"node-jose": "2.2.0",
"nodemon": "3.1.11",
"serve-favicon": "2.5.1"
2023-03-10 13:49:33 +01:00
},
"devDependencies": {
"prettier": "3.7.4"
2019-12-17 20:32:14 +01:00
}
}