-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
133 lines (133 loc) · 4.4 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
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
{
"name": "expresso-typeorm",
"version": "5.2.0",
"description": "Built using expressjs and typeorm",
"main": "./dist/index.js",
"scripts": {
"key:generate": "node ./dist/scripts/key_generate.js",
"clean": "rimraf dist coverage",
"typecheck": "tsc --noEmit",
"lint": "npx eslint .",
"prettier": "npx prettier . --write",
"prebuild": "npm-run-all clean typecheck",
"build": "tsc && tsc-alias",
"build:swc": "npx swc src -d dist",
"build:watch-tsc": "tsc && (concurrently \"tsc -w\" \"tsc-alias -w\")",
"build:watch-swc": "npx swc src -w --out-dir dist",
"start": "nodemon --exec node ./dist/main.js",
"dev": "npm-run-all build start",
"dev:watch": "concurrently \"npm run build:watch-tsc\" \"npm run watch-dev\"",
"watch-dev": "nodemon --watch \"dist/**/*\" -e js ./dist/main.js",
"db:create": "node ./dist/scripts/create_db.js",
"db:destroy": "node ./dist/scripts/drop_db.js",
"db:sync": "npx typeorm schema:sync -d ./dist/database/datasource.js",
"db:drop": "npx typeorm schema:drop -d ./dist/database/datasource.js",
"db:reset": "npm-run-all db:drop db:sync",
"test": "jest --watchAll --detectOpenHandles",
"serve:staging": "NODE_ENV=staging node ./dist/main.js",
"serve:production": "NODE_ENV=production node ./dist/main.js",
"serve:staging-docker": "NODE_ENV=staging pm2-runtime ./dist/main.js",
"serve:production-docker": "NODE_ENV=production pm2-runtime ./dist/main.js",
"prerelease": "npm run prebuild",
"postrelease": "git push --follow-tags origin main",
"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"
},
"keywords": [
"expressjs",
"typeorm"
],
"author": "masb0ymas <[email protected]>",
"license": "MIT",
"private": true,
"type": "module",
"engines": {
"node": ">=18.x"
},
"dependencies": {
"@scalar/express-api-reference": "^0.4.165",
"ajv": "^8.17.1",
"axios": "^1.7.6",
"colorette": "^2.0.20",
"compression": "^1.7.4",
"concurrently": "^8.2.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"date-fns": "^3.6.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-async-handler": "^1.2.0",
"express-rate-limit": "^7.4.0",
"express-useragent": "^1.0.15",
"expresso-core": "^0.12.2",
"expresso-hooks": "^0.12.2",
"expresso-provider": "^0.12.2",
"expresso-query": "^0.12.2",
"handlebars": "^4.7.8",
"helmet": "^7.1.0",
"hpp": "^0.2.3",
"i18next": "^23.14.0",
"i18next-fs-backend": "^2.3.2",
"i18next-http-middleware": "^3.6.0",
"lodash": "^4.17.21",
"multer": "1.4.5-lts.1",
"node-cron": "^3.0.3",
"npm-run-all": "^4.1.5",
"pg": "^8.12.0",
"pg-hstore": "^2.3.4",
"pino-http": "^10.2.0",
"pm2": "^5.4.2",
"qs": "^6.13.0",
"reflect-metadata": "^0.2.2",
"request-ip": "^3.3.0",
"slugify": "^1.6.6",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"typeorm": "^0.3.20",
"typeorm-extension": "^3.6.1",
"uuid": "^10.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@eslint/js": "^9.9.1",
"@jest/globals": "^29.7.0",
"@swc/cli": "0.1.65",
"@swc/core": "1.3.78",
"@types/compression": "^1.7.5",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/eslint__js": "^8.42.3",
"@types/express": "^4.17.21",
"@types/express-useragent": "^1.0.5",
"@types/hpp": "^0.2.6",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.7",
"@types/multer": "^1.4.12",
"@types/node": "^22.5.1",
"@types/node-cron": "^3.0.11",
"@types/qs": "^6.9.15",
"@types/request-ip": "^0.0.41",
"@types/supertest": "^6.0.2",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"@types/uuid": "^10.0.0",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.5",
"jest": "^29.7.0",
"nodemon": "^3.1.4",
"prettier": "^3.3.3",
"rimraf": "^5.0.10",
"standard-version": "^9.5.0",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"tsc-alias": "^1.8.10",
"typescript": "^5.5.4",
"typescript-eslint": "^8.3.0"
}
}