fxa/packages/123done/package.json

51 строка
1.3 KiB
JSON

{
"name": "123done",
"description": "A simple tasklist app that demonstrates FxA Sign-In",
"version": "0.0.2",
"author": {
"name": "Mozilla",
"url": "https://mozilla.org/"
},
"licenses": [
{
"type": "MPL 2.0",
"url": "https://mozilla.org/MPL/2.0/"
}
],
"homepage": "http://123done.org/",
"bugs": "https://github.com/mozilla/fxa/issues",
"repository": {
"type": "git",
"url": "https://github.com/mozilla/fxa.git"
},
"private": true,
"dependencies": {
"client-sessions": "0.8.x",
"convict": "^6.2.3",
"convict-format-with-validator": "^6.2.0",
"express": "^4.17.3",
"fxa-jwtool": "^0.7.2",
"ioredis": "^5.0.6",
"morgan": "^1.10.0",
"node-rsa": "1.1.1",
"request": "^2.88.2"
},
"devDependencies": {
"audit-filter": "0.5.0",
"eslint": "^7.32.0",
"eslint-plugin-fxa": "^2.0.2",
"pm2": "^5.2.2",
"prettier": "^2.3.1"
},
"scripts": {
"audit": "npm audit --json | audit-filter --nsp-config=.nsprc --audit=-",
"lint": "eslint .",
"start": "pm2 start pm2.config.js",
"stop": "pm2 stop pm2.config.js",
"restart": "pm2 restart pm2.config.js",
"delete": "pm2 delete pm2.config.js",
"test": "npm run lint",
"format": "prettier --write --config ../../_dev/.prettierrc '**'"
}
}