-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
61 lines (61 loc) · 1.51 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
52
53
54
55
56
57
58
59
60
61
{
"name": "sp_project_be",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --maxWorkers=1",
"start": "nodemon src/app.js --legacy-watch",
"migrate:up": "migrate-mongo up",
"migrate:rollback": "migrate-mongo down",
"migrate:create": "migrate-mongo create",
"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": {
"@azure/storage-blob": "^12.26.0",
"bcrypt": "^5.0.1",
"cookie": "^0.6.0",
"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",
"iconv-lite": "^0.6.3",
"jsonwebtoken": "^8.5.1",
"migrate-mongo": "^11.0.0",
"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",
"socket.io": "^4.7.5",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-express": "^4.3.0",
"winston": "^3.8.0",
"winston-mongodb": "^5.0.7"
},
"lint-staged": {
"*.{js}": [
"eslint --fix",
"prettier --write"
]
}
}