-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.68 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.68 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
{
"name": "express-api-sequelize",
"version": "6.0.0-3",
"description": "A simple Express API with TypeScript, Sequelize, and PostgreSQL",
"main": "src/main.ts",
"private": true,
"type": "commonjs",
"scripts": {
"secret": "chmod +x ./script/secret.sh && bash ./script/secret.sh",
"start": "nodemon --exec node ./dist/main.js",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "tsc && tsc-alias",
"dev": "concurrently \"npm run build:watch\" \"npm run watch-dev\"",
"build:watch": "tsc && (concurrently \"tsc -w\" \"tsc-alias -w\")",
"watch-dev": "nodemon --watch \"dist/**/*\" -e js ./dist/main.js",
"start:staging": "NODE_ENV=staging pm2-runtime ./dist/main.js",
"start:production": "NODE_ENV=production pm2-runtime ./dist/main.js",
"test": "echo \"Error: no test specified\" && exit 1",
"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": "npm-run-all db:drop db:create db:migrate db:seed",
"prerelease": "npm-run-all prebuild",
"postrelease": "git push --follow-tags origin main",
"release": "release-it",
"release:pre": "release-it --preRelease=beta",
"release:patch": "release-it patch",
"release:minor": "release-it minor",
"release:major": "release-it major"
},
"keywords": [
"express",
"api",
"typescript"
],
"author": "masb0ymas <me@masb0ymas.com>",
"license": "MIT",
"engines": {
"node": ">=20.x"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.896.0",
"@aws-sdk/s3-request-presigner": "^3.934.0",
"@google-cloud/storage": "^7.17.1",
"argon2": "^0.41.1",
"colorette": "^2.0.20",
"compression": "^1.8.1",
"concurrently": "^9.2.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"cronstrue": "^3.3.0",
"date-fns": "^4.1.0",
"dotenv": "^17.2.2",
"express": "^4.21.2",
"express-async-handler": "^1.2.0",
"express-rate-limit": "^8.1.0",
"express-useragent": "^1.0.15",
"handlebars": "^4.7.8",
"helmet": "^8.1.0",
"hpp": "^0.2.3",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"minio": "^8.0.6",
"multer": "^2.0.2",
"node-cron": "^3.0.3",
"nodemailer": "^7.0.6",
"npm-run-all": "^4.1.5",
"pg": "^8.16.3",
"pg-hstore": "^2.3.4",
"pino": "^9.11.0",
"pino-http": "^10.5.0",
"pino-pretty": "^13.1.1",
"pm2-runtime": "^5.4.1",
"reflect-metadata": "^0.2.2",
"request-ip": "^3.3.0",
"sequelize": "^6.37.7",
"sequelize-cli": "^6.6.3",
"sequelize-typescript": "^2.1.6",
"slugify": "^1.6.6",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"uuid": "^11.1.0",
"zod": "^4.1.11"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@types/compression": "^1.8.1",
"@types/cookie-parser": "^1.4.9",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/express-useragent": "^1.0.5",
"@types/hpp": "^0.2.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/lodash": "^4.17.20",
"@types/multer": "^2.0.0",
"@types/node": "^24.5.2",
"@types/node-cron": "^3.0.11",
"@types/nodemailer": "^7.0.1",
"@types/request-ip": "^0.0.41",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"nodemon": "^3.1.10",
"prettier": "^3.6.2",
"release-it": "^18.1.2",
"rimraf": "^6.0.1",
"tsc-alias": "^1.8.16",
"typescript": "^5.9.2",
"typescript-eslint": "^8.44.1"
}
}