forked from masb0ymas/express-api-sequelize
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
163 lines (163 loc) · 5.44 KB
/
package.json
File metadata and controls
163 lines (163 loc) · 5.44 KB
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
{
"name": "expresso",
"version": "3.5.0",
"description": "expresso, typescript, sequelize and module alias",
"main": "src/server.ts",
"scripts": {
"key:generate": "npx ts-node ./src/@expresso/scripts/generate.ts",
"dev": "yarn && npm-run-all build start:dev",
"start": "nodemon --exec 'ts-node' ./src/server.ts",
"start:dev": "nodemon --exec node ./dist/server.js",
"clean": "rm -rf ./dist",
"test:lint": "npx eslint '*/**/*.{js,jsx,ts,tsx}' --quiet --fix",
"test:types": "npx tsc --noEmit",
"test:types-watch": "npm run test:types -- --watch",
"prebuild": "yarn && npm-run-all clean test:lint test:types",
"build": "npx tsc -p .",
"deploy": "npm run build && pm2 reload ecosystem.config.js",
"serve:staging": "NODE_ENV=staging node ./dist/server.js",
"serve:production": "NODE_ENV=production node ./dist/server.js",
"serve:staging-docker": "NODE_ENV=staging pm2-runtime ./dist/server.js",
"serve:production-docker": "NODE_ENV=production pm2-runtime ./dist/server.js",
"db:migrate": "npx sequelize-cli db:migrate",
"db:migrate-fresh": "npx sequelize-cli db:migrate:undo:all && npm run db:migrate",
"db:seed": "npx sequelize-cli db:seed:all",
"db:drop": "npx sequelize-cli db:drop",
"db:create": "npx sequelize-cli db:create",
"db:reset": "yarn && npm-run-all db:drop db:create db:migrate db:seed",
"release": "standard-version",
"release:pre": "npm run release -- --prerelease",
"release:patch": "npm run release -- --release-as patch",
"release:minor": "npm run release -- --release-as minor",
"release:major": "npm run release -- --release-as major",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"express",
"typescript",
"sequelize",
"module alias"
],
"author": "masb0ymas",
"license": "MIT",
"private": true,
"engines": {
"node": ">=12.x"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.54.0",
"@aws-sdk/s3-request-presigner": "^3.54.0",
"axios": "^0.26.1",
"bcrypt": "^5.0.1",
"chalk": "^4.1.2",
"compression": "^1.7.4",
"convert-excel-to-json": "^1.7.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"date-fns": "^2.28.0",
"dotenv": "^16.0.0",
"exceljs": "^4.3.0",
"express": "^4.17.3",
"express-async-handler": "^1.2.0",
"express-useragent": "^1.0.15",
"firebase": "^9.6.8",
"firebase-admin": "9.12.0",
"googleapis": "^96.0.0",
"handlebars": "^4.7.7",
"helmet": "^5.0.2",
"hpp": "^0.2.3",
"i18next": "^21.6.14",
"i18next-fs-backend": "^1.1.4",
"i18next-http-middleware": "^3.2.0",
"ioredis": "^4.28.5",
"jsonwebtoken": "^8.5.1",
"libphonenumber-js": "^1.9.49",
"lodash": "^4.17.21",
"mariadb": "^2.5.5",
"module-alias": "^2.2.2",
"morgan": "^1.10.0",
"ms": "^2.1.3",
"multer": "^1.4.4",
"mysql2": "^2.3.3",
"node-cron": "^3.0.0",
"nodemailer": "^6.7.1",
"nodemailer-mailgun-transport": "^2.1.3",
"npm-run-all": "^4.1.5",
"pg": "^8.7.3",
"pg-hstore": "^2.3.4",
"randomstring": "^1.2.2",
"rate-limiter-flexible": "^2.3.5",
"redis": "^3.1.2",
"request-ip": "^2.1.3",
"sequelize": "^6.17.0",
"sequelize-cli": "^6.4.1",
"sharp": "^0.30.2",
"slugify": "^1.6.5",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-express": "^4.2.0",
"uuid": "^8.3.2",
"winston": "^3.6.0",
"yup": "0.31.0"
},
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@types/bcrypt": "^5.0.0",
"@types/compression": "^1.7.2",
"@types/convert-excel-to-json": "^1.7.1",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-useragent": "^1.0.1",
"@types/helmet": "^4.0.0",
"@types/hpp": "^0.2.2",
"@types/i18next-fs-backend": "^1.1.2",
"@types/ioredis": "^4.28.8",
"@types/jsonwebtoken": "^8.5.8",
"@types/lodash": "^4.14.179",
"@types/module-alias": "^2.0.1",
"@types/morgan": "^1.9.3",
"@types/ms": "^0.7.31",
"@types/multer": "^1.4.7",
"@types/node": "^17.0.21",
"@types/node-cron": "^3.0.0",
"@types/nodemailer": "^6.4.4",
"@types/nodemailer-mailgun-transport": "^1.4.3",
"@types/randomstring": "^1.1.8",
"@types/redis": "^2.8.32",
"@types/request-ip": "^0.0.37",
"@types/sequelize": "^4.28.11",
"@types/sharp": "^0.29.4",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^8.3.4",
"@types/yup": "^0.29.13",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^7.0.4",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"standard-version": "^9.3.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
},
"_moduleAliases": {
"@expresso/*": "dist/@expresso/*",
"@config/*": "dist/config/*",
"@controllers/*": "dist/controllers/*",
"@database/*": "dist/database/*",
"@jobs/*": "dist/jobs/*",
"@middlewares/*": "dist/middlewares/*",
"@routes/*": "dist/routes/*",
"@utils/*": "dist/utils/*",
"@views/*": "dist/views/*"
}
}