-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (36 loc) · 1.1 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
{
"name": "express-app",
"version": "1.0.1",
"description": "",
"scripts": {
"start": "node ./js-express-app/server.js --env production",
"worker": "export NODE_ENV=development && node --max-old-space-size=1024 ./js-express-app/worker.js",
"prebuild": "tslint -c tslint.json -p tsconfig.json --fix",
"build": "tsc",
"prestart": "npm run build",
"dev": "nodemon --config nodemon.json ts-express-app/server.ts",
"start:ts": "export NODE_ENV=production && node ./dist/server.js",
"worker:ts": "export NODE_ENV=production && node ./dist/worker.js"
},
"author": "saifkhan",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-eventbridge": "^3.418.0",
"aws-sdk": "^2.1463.0",
"axios": "^1.5.0",
"eventemitter2": "^6.4.9",
"express": "^4.17.1",
"pg": "^8.11.3",
"reflect-metadata": "^0.1.13",
"sqs-consumer": "^7.3.0",
"typeorm": "^0.3.17"
},
"devDependencies": {
"@types/express": "^4.17.18",
"@types/node": "^20.6.4",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^5.2.2"
}
}