2012-03-19 19:48:38 +04:00
|
|
|
{
|
|
|
|
"name": "123done",
|
2015-12-11 21:51:45 +03:00
|
|
|
"description": "A simple tasklist app that demonstrates FxA Sign-In",
|
|
|
|
"version": "0.0.2",
|
2013-09-13 01:30:08 +04:00
|
|
|
"author": {
|
2014-04-03 01:38:56 +04:00
|
|
|
"name": "Mozilla",
|
|
|
|
"url": "https://mozilla.org/"
|
2013-09-13 01:30:08 +04:00
|
|
|
},
|
2014-04-03 01:38:56 +04:00
|
|
|
"licenses": [
|
|
|
|
{
|
|
|
|
"type": "MPL 2.0",
|
|
|
|
"url": "https://mozilla.org/MPL/2.0/"
|
|
|
|
}
|
|
|
|
],
|
2013-09-13 01:30:08 +04:00
|
|
|
"homepage": "http://123done.org/",
|
2019-05-05 09:12:56 +03:00
|
|
|
"bugs": "https://github.com/mozilla/fxa/issues",
|
2013-09-13 01:30:08 +04:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2019-05-05 09:12:56 +03:00
|
|
|
"url": "https://github.com/mozilla/fxa.git"
|
2013-09-13 01:30:08 +04:00
|
|
|
},
|
2012-03-19 19:48:38 +04:00
|
|
|
"private": true,
|
|
|
|
"dependencies": {
|
2020-10-19 08:20:22 +03:00
|
|
|
"client-sessions": "0.8.x",
|
2022-05-26 05:59:06 +03:00
|
|
|
"convict": "^6.2.3",
|
2021-07-21 09:19:59 +03:00
|
|
|
"convict-format-with-validator": "^6.2.0",
|
2022-12-06 23:25:51 +03:00
|
|
|
"express": "^4.17.3",
|
2021-05-24 22:38:11 +03:00
|
|
|
"fxa-jwtool": "^0.7.2",
|
2022-06-23 22:35:10 +03:00
|
|
|
"ioredis": "^5.0.6",
|
2020-06-16 23:19:39 +03:00
|
|
|
"morgan": "^1.10.0",
|
2021-01-07 08:22:05 +03:00
|
|
|
"node-rsa": "1.1.1",
|
2020-06-16 23:19:39 +03:00
|
|
|
"request": "^2.88.2"
|
2012-04-28 01:10:07 +04:00
|
|
|
},
|
2012-04-03 00:12:20 +04:00
|
|
|
"devDependencies": {
|
2019-11-09 01:35:36 +03:00
|
|
|
"audit-filter": "0.5.0",
|
2021-10-07 01:38:39 +03:00
|
|
|
"eslint": "^7.32.0",
|
2020-06-16 23:19:39 +03:00
|
|
|
"eslint-plugin-fxa": "^2.0.2",
|
2022-10-26 19:10:38 +03:00
|
|
|
"pm2": "^5.2.2",
|
2021-06-09 00:03:22 +03:00
|
|
|
"prettier": "^2.3.1"
|
2012-04-03 00:12:20 +04:00
|
|
|
},
|
2012-03-19 19:48:38 +04:00
|
|
|
"scripts": {
|
2019-11-19 22:47:55 +03:00
|
|
|
"audit": "npm audit --json | audit-filter --nsp-config=.nsprc --audit=-",
|
2020-05-15 03:48:39 +03:00
|
|
|
"lint": "eslint .",
|
2020-04-13 02:54:49 +03:00
|
|
|
"start": "pm2 start pm2.config.js",
|
|
|
|
"stop": "pm2 stop pm2.config.js",
|
|
|
|
"restart": "pm2 restart pm2.config.js",
|
2021-11-19 22:52:33 +03:00
|
|
|
"delete": "pm2 delete pm2.config.js",
|
2019-09-07 00:11:38 +03:00
|
|
|
"test": "npm run lint",
|
2019-06-24 23:02:39 +03:00
|
|
|
"format": "prettier --write --config ../../_dev/.prettierrc '**'"
|
2012-03-19 19:48:38 +04:00
|
|
|
}
|
|
|
|
}
|