mail/package.json

25 lines
542 B
JSON
Raw Permalink Normal View History

{
"name": "webmail",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo ok",
"jshint_backend": "cd src && jshint .",
"jshint_frontend": "cd public/js && jshint .",
"start": "node src/index.js",
"bundle": "cd public/js && rollup -c rollup.config.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.3",
2018-12-06 10:18:49 +01:00
"express": "^4.16.3",
"jsonwebtoken": "^8.4.0"
2019-12-07 17:49:41 +01:00
},
"devDependencies": {
"jshint": "^2.10.3",
"rollup": "^2.6.1"
}
}