ExpressTS_BoilerPlate/package.json

28 lines
631 B
JSON
Raw Permalink Normal View History

2021-05-22 22:29:07 +03:00
{
"dependencies": {
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-handlebars": "^5.3.2",
"hbs": "^4.1.2",
2021-05-22 22:29:07 +03:00
"npm": "^7.14.0"
},
"name": "boilerplate",
2021-05-22 22:29:07 +03:00
"version": "1.0.0",
"main": "./src/app.js",
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.11",
"@types/express-handlebars": "^3.1.0",
"@types/handlebars": "^4.1.0",
"@types/hbs": "^4.0.1"
2021-05-22 22:29:07 +03:00
},
"scripts": {
"build": "rm -rf dist/* && tsc",
"test": "DEV_MODE=TRUE && nodemon ./src/app.ts"
2021-05-22 22:29:07 +03:00
},
"author": "",
"license": "ISC",
"description": ""
}