43 lines
980 B
JSON
43 lines
980 B
JSON
{
|
|
"name": "nodejs-for-beginners",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"start": "node --require dotenv/config index.js",
|
|
"test": "jest --setupFiles dotenv/config",
|
|
"test:coverage": "jest --coverage --setupFiles dotenv/config",
|
|
"lint": "standard",
|
|
"lint:fix": "standard --fix",
|
|
"infra:start": "docker-compose up -d --build",
|
|
"infra:stop": "docker-compose down --remove-orphans"
|
|
},
|
|
"author": "",
|
|
"license": "ISC",
|
|
"standard": {
|
|
"env": [
|
|
"jest"
|
|
],
|
|
"ignore": [
|
|
"public/*.js"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"bcrypt": "^5.1.1",
|
|
"body-parser": "^1.20.2",
|
|
"dotenv": "^16.3.1",
|
|
"ejs": "^3.1.9",
|
|
"express": "^4.18.3",
|
|
"jsonwebtoken": "^9.0.1",
|
|
"mongoose": "7.4",
|
|
"validator": "^13.11.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/preset-env": "^7.24.1",
|
|
"jest": "^29.7.0",
|
|
"standard": "^17.1.0",
|
|
"supertest": "^6.3.3"
|
|
}
|
|
}
|