FunctionProject/s.divlo.fr/package.json
2020-12-28 11:43:08 +01:00

34 lines
662 B
JSON

{
"name": "short.divlo.fr",
"version": "1.0.0",
"description": "Link shortener for FunctionProject",
"standard": {
"files": [
"./**/*.js"
],
"envs": [
"node"
]
},
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"lint": "standard | snazzy",
"format": "standard --fix | snazzy"
},
"dependencies": {
"dotenv": "^8.2.0",
"ejs": "^3.1.5",
"express": "^4.17.1",
"express-http-to-https": "^1.1.4",
"helmet": "^4.3.1",
"morgan": "^1.10.0",
"mysql": "^2.18.1"
},
"devDependencies": {
"nodemon": "^2.0.6",
"snazzy": "^9.0.0",
"standard": "^16.0.3"
}
}