-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.18 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "sp_project_be",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --maxWorkers=1",
"start": "nodemon src/app.js --legacy-watch",
"lint": "eslint . --fix",
"prepare": "husky install",
"pre-commit": "lint-staged"
},
"author": "SoftServe ITA",
"license": "ISC",
"devDependencies": {
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"husky": "^8.0.0",
"jest": "^28.1.3",
"jest-sonar-reporter": "^2.0.0",
"lint-staged": "^13.0.2",
"nodemon": "^2.0.15",
"prettier": "2.5.1",
"supertest": "^6.2.4"
},
"dependencies": {
"bcrypt": "^5.0.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cron": "^2.1.0",
"dotenv": "^10.0.0",
"email-templates": "^10.0.0",
"express": "^4.17.1",
"googleapis": "^105.0.0",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.2",
"mongodb": "^4.2.2",
"mongoose": "^6.1.2",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.7.7",
"pug": "^3.0.2",
"winston": "^3.8.0",
"winston-mongodb": "^5.0.7"
},
"lint-staged": {
"*.{js}": [
"eslint --fix",
"prettier --write"
]
}
}