oneuptime/licensing/package.json

32 lines
862 B
JSON
Raw Normal View History

2020-03-04 17:28:54 +00:00
{
2020-03-10 21:10:59 +00:00
"name": "fyipe-licensing",
2020-05-19 20:02:11 +00:00
"version": "3.0.0",
2020-03-10 21:10:59 +00:00
"private": true,
"dependencies": {
"airtable": "^0.8.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
2020-03-12 23:07:43 +00:00
"ejs": "^2.6.2",
2020-03-10 21:10:59 +00:00
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"winston": "^2.4.0"
},
"scripts": {
"start": "node server.js",
2020-03-31 12:05:13 +00:00
"dev": "nodemon server.js",
"test": "mocha --exit test/index.js",
2020-03-10 21:10:59 +00:00
"audit": "npm-audit-ci-wrapper --threshold=high",
2020-03-13 12:26:19 +00:00
"dep-check": "depcheck ./ --skip-missing=true --ignores='ejs'"
2020-03-10 21:10:59 +00:00
},
"devDependencies": {
"chai": "^4.1.2",
2020-08-07 16:53:30 +00:00
"chai-http": "^4.3.0",
2020-03-10 21:10:59 +00:00
"custom-env": "^1.0.2",
"depcheck": "^0.9.2",
2020-08-07 16:53:30 +00:00
"mocha": "^8.1.1",
"nodemon": "^2.0.4",
2020-04-27 17:23:08 +00:00
"npm-audit-ci-wrapper": "^2.5.1"
2020-03-10 21:10:59 +00:00
}
2020-03-04 17:28:54 +00:00
}