pasu/package.json

40 lines
1.1 KiB
JSON

{
"name": "2fa.soruly.com",
"version": "1.0.0",
"description": "Self-hosted 2FA app",
"main": "server.js",
"type": "module",
"scripts": {
"start": "pm2 start ecosystem.config.json",
"watch": "pm2 start ecosystem.config.json --watch",
"stop": "pm2 stop ecosystem.config.json",
"restart": "pm2 restart ecosystem.config.json",
"reload": "pm2 reload ecosystem.config.json",
"delete": "pm2 delete ecosystem.config.json",
"prettier": "prettier",
"format": "prettier --write \"**/*.js\"",
"lint": "prettier --check \"**/*.js\"",
"test": "prettier --check \"**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/soruly/2fa.git"
},
"author": "soruly",
"license": "MIT",
"bugs": {
"url": "https://github.com/soruly/2fa/issues"
},
"homepage": "https://github.com/soruly/2fa#readme",
"dependencies": {
"dotenv": "^16.0.1",
"ejs": "^3.1.8",
"express": "^4.18.1",
"express-rate-limit": "^6.4.0",
"fs-extra": "^10.1.0"
},
"devDependencies": {
"prettier": "^2.7.1"
}
}