-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.72 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
{
"name": "typescript_nodejs_express_template",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "NODE_ENV=production pm2 start ./build/src/app.js -i 5 --attach --watch | ./node_modules/.bin/bunyan",
"stop": "pm2 stop all",
"delete": "pm2 delete all",
"dev": "nodemon -r tsconfig-paths\\register src\\app.ts | .\\node_modules\\.bin\\bunyan",
"lint": "eslint .. --ext .ts",
"lint:fix": "eslint .. --ext .ts --fix",
"prettier:check": "prettier --check src/**/*.{ts,json}",
"prettier:fix": "prettier --write src/**/*.{ts,json}",
"test": "jest --coverage=true -w=1 --forceExit --detectOpenHandles --watchAll=false",
"build": "tsc --project tsconfig.json && tsc-alias -p tsconfig.json",
"seeds:dev": "npx ts-node src/seeds.ts",
"seeds:prod": "npx ts-node ./build/src/seeds.js"
},
"keywords": [],
"author": "Or Hasson",
"license": "MIT",
"dependencies": {
"@bull-board/express": "^4.12.2",
"@faker-js/faker": "^7.6.0",
"@jest/types": "^29.6.1",
"@sendgrid/mail": "^7.7.0",
"@socket.io/redis-adapter": "^8.2.1",
"axios": "^1.4.0",
"bcryptjs": "^2.4.3",
"bull": "^4.10.4",
"bullmq": "^3.15.8",
"bunyan": "^1.8.15",
"canvas": "^2.11.2",
"cloudinary": "^1.38.0",
"compression": "^1.7.4",
"cookie-session": "^2.0.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"helmet": "^6.2.0",
"hpp": "^0.2.3",
"http-status-codes": "^2.2.0",
"ip": "^1.1.8",
"joi": "^17.9.2",
"jsonwebtoken": "^9.0.1",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"mongoose": "^7.0.0",
"nodemailer": "^6.9.4",
"redis": "^4.6.7",
"socket.io": "^4.7.1",
"swagger-stats": "^0.99.7",
"typescript": "^4.9.5",
"typescript-transform-paths": "^3.4.6"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/bull": "^4.10.0",
"@types/bunyan": "^1.8.8",
"@types/compression": "^1.7.2",
"@types/cookie-session": "^2.0.44",
"@types/cors": "^2.8.13",
"@types/ejs": "^3.1.2",
"@types/express": "^4.17.17",
"@types/hpp": "^0.2.2",
"@types/ip": "^1.1.0",
"@types/jest": "^29.5.3",
"@types/jsonwebtoken": "^9.0.2",
"@types/lodash": "^4.14.195",
"@types/nodemailer": "^6.4.8",
"@types/redis-info": "^3.0.0",
"@types/swagger-stats": "^0.95.8",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"jest": "^29.6.1",
"prettier": "^2.8.8",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.7",
"tsconfig-paths": "^3.14.2"
}
}