forked from freedamdam/backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.64 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
{
"name": "backend",
"version": "0.0.1",
"description": "",
"private": true,
"scripts": {
"build": "npx ttsc -p .",
"postbuild": "cp -r src/routes/docs build/src/",
"prepare": "husky install",
"start": "node build/src/app.js",
"dev": "nodemon --watch 'src/**/*' -e ts,yml,yaml --exec ts-node -r tsconfig-paths/register src/app.ts",
"prod": "pm2 start ecosystem.config.js --only backend --env production"
},
"dependencies": {
"aws-sdk": "^2.1168.0",
"axios": "^1.4.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.1",
"method-override": "^3.0.0",
"moment": "^2.29.4",
"mongoose": "^7.0.0",
"morgan": "^1.10.0",
"node-schedule": "^2.1.1",
"redis": "^4.6.7",
"reflect-metadata": "^0.1.13",
"socket.io": "^4.7.2",
"winston": "^3.10.0",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/method-override": "^0.0.32",
"@types/morgan": "^1.9.4",
"@types/node": "^20.4.5",
"@types/node-schedule": "^2.1.0",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"nodemon": "^3.0.1",
"prettier": "3.0.0",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.6",
"typescript-transform-paths": "^3.4.6"
}
}