-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.57 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "simple.dmw.api",
"version": "1.0.1",
"engines": {
"node": ">=14.0.0"
},
"description": "Document Management Workflow",
"main": "app.js",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.js": [
"npm run prettier-format",
"npm run lint"
]
},
"scripts": {
"prepare": "husky install",
"start": "NODE_PATH=. node app.js",
"prod": "NODE_ENV=production NODE_PATH=. node app.js",
"start:window": "cross-env NODE_PATH=. node app.js",
"dev": "cross-env NODE_PATH=. nodemon app.js",
"prettier-check": "prettier --config .prettierrc.json --check .",
"prettier-format": "prettier --write .",
"lint": "eslint . --ext .js",
"lint:test": "eslint test/**/*.js --fix"
},
"repository": {
"type": "git",
"url": ""
},
"author": "LiQwik Technology",
"license": "MIT",
"homepage": "www.liqwik.com",
"dependencies": {
"@koa/cors": "^2.2.3",
"@koa/router": "^9.4.0",
"amqplib": "^0.7.1",
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"cloudinary": "^1.23.0",
"dayjs": "^1.8.35",
"dotenv": "^8.2.0",
"google-libphonenumber": "^3.2.18",
"ioredis": "^4.24.4",
"joi": "^17.3.0",
"jsonwebtoken": "^8.5.1",
"koa": "^2.13.0",
"koa-body": "^4.2.0",
"koa-compose": "^4.1.0",
"koa-helmet": "^6.0.0",
"koa-passport": "^4.1.3",
"koa-ratelimit": "^5.0.0",
"koa-session": "^6.1.0",
"koa2-swagger-ui": "^5.0.5",
"lodash": "^4.17.21",
"mongoose": "^5.12.1",
"morgan": "^1.10.0",
"nanoid": "^3.1.23",
"node-telegram-bot-api": "^0.52.0",
"nodemailer": "^6.6.0",
"passport": "^0.4.1",
"passport-anonymous": "^1.0.1",
"passport-jwt": "^4.0.0",
"pdfkit": "^0.12.1",
"swagger-jsdoc": "^5.0.1",
"validator": "^13.1.17",
"winston": "^3.3.3",
"yargs": "^16.2.0"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"chai-string": "^1.5.0",
"cross-env": "^7.0.2",
"eslint": "^7.19.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^7.2.0",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-mocha": "^8.1.0",
"eslint-plugin-no-loops": "^0.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"mocha": "^8.1.3",
"nodemon": "^2.0.4",
"prettier": "^2.2.1"
}
}