-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.02 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "saso-api",
"version": "v1",
"description": "Saso API v1",
"main": "app.js",
"scripts": {
"setup": "npm i && cp .env.example .env",
"start": "NODE_ENV=development npx nodemon bin/www",
"lint": "npm run lint:js",
"lint:eslint": "eslint --ignore-path .gitignore",
"lint:eslint:fix": "eslint --ignore-path .gitignore --fix",
"lint:js": "npm run lint:eslint -- . ",
"lint:staged": "lint-staged",
"test": "echo \"Error: no test specified\" && exit 1"
},
"lint-staged": {
"*.js": [
"npm run lint:eslint:fix",
"git add --force"
],
"*.json": [
"prettier --write",
"git add --force"
]
},
"pre-commit": "lint:staged",
"keywords": [],
"author": "",
"license": "ISC",
"_moduleAliases": {
"@mongo": "src/mongo",
"@models": "src/models",
"@helpers": "src/helpers",
"@utils": "src/utils",
"@controllers": "src/controllers",
"@middlewares": "src/middlewares",
"@configs": "src/config",
"@routes": "src/routes"
},
"dependencies": {
"axios": "^1.6.8",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"express": "^4.17.1",
"form-data": "^4.0.0",
"http-errors": "^1.8.1",
"http-status-codes": "^2.1.4",
"jsonwebtoken": "^9.0.2",
"module-alias": "^2.2.2",
"mongodb": "^4.2.0",
"mongoose": "^6.0.13",
"morgan": "^1.10.0",
"multer": "^1.4.3",
"node-cron": "^3.0.2",
"nodemailer": "^6.7.3",
"puppeteer": "^13.6.0",
"qrcode": "^1.5.3",
"read-excel-file": "^5.2.28",
"sharp": "^0.33.3",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-express": "^4.3.0",
"uuid": "^8.3.2",
"validator": "^13.7.0",
"xlsx": "^0.18.2"
},
"devDependencies": {
"dotenv": "^10.0.0",
"eslint": "^8.30.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"lint-staged": "^13.1.0",
"nodemon": "^2.0.15",
"pre-commit": "^1.2.2",
"prettier": "^2.8.1"
}
}