Skip to content
Permalink
385e2b0dae
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
45 lines (45 sloc) 1.17 KB
{
"name": "WebAuthnUX_API",
"version": "1.0.0",
"description": "",
"main": "server.js",
"type": "module",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"dev": "cross-env NODE_ENV=dev nodemon --inspect=5001 --config nodemon.js server.js",
"staging": "cross-env NODE_ENV=staging nodemon --inspect=5001 --config nodemon.js server.js",
"production": "cross-env NODE_ENV=production node server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@dannymoerkerke/fido2-lib": "^2.4.1",
"base64url": "^3.0.1",
"body-parser": "^1.19.0",
"chalk": "^4.1.0",
"compression": "^1.7.4",
"config": "^3.3.3",
"connect-mongo": "^3.2.0",
"cookie-parser": "^1.4.5",
"cookie-session": "^1.4.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^8.2.0",
"errorhandler": "^1.5.1",
"express": "^5.0.0-alpha.8",
"express-mongo-sanitize": "^2.0.2",
"express-session": "^1.17.1",
"fido2-library": "^2.5.2",
"glob": "^7.1.6",
"helmet": "^4.4.1",
"mongoose": "^5.11.12",
"nodemon": "^2.0.7",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"eslint": "^7.17.0"
}
}