-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.74 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.74 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
{
"name": "e-tour-backend",
"version": "2.0.1",
"main": "index.js",
"scripts": {
"start": "npm run build && npm run serve",
"serve": "node -r dotenv/config build/server.js",
"build": "npm run clean && npm run build-ts",
"watch": "npx concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run watch-node\"",
"watch-node": "set NODE_OPTIONS=\"--inspect\" && nodemon -r dotenv/config build/server.js",
"clean": "rimraf ./build",
"build-ts": "tsc && tsc-alias",
"watch-ts": "tsc && (concurrently \"tsc -w\" \"tsc-alias -w\")",
"eslint": "eslint . --ext .js,.ts",
"upgrade": "npm update --save-dev && npm update --save",
"test": "jest --forceExit --detectOpenHandles --verbose false",
"deploy": "docker build . -t hoanghy/e-tour && docker push hoanghy/e-tour",
"test-watch": "jest --watch --detectOpenHandles --verbose"
},
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/client-s3": "^3.289.0",
"@sendgrid/mail": "^7.7.0",
"@socket.io/admin-ui": "^0.5.1",
"axios": "^1.2.1",
"bcrypt": "^5.1.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express": "^4.18.2",
"file-type": "^18.4.0",
"firebase-admin": "^11.8.0",
"joi": "^17.7.0",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"mongodb-memory-server": "^8.12.1",
"mongoose": "^6.8.0",
"multer": "^1.4.5-lts.1",
"newrelic": "^9.7.2",
"nodemailer": "^6.9.3",
"os-utils": "^0.0.14",
"qs": "^6.11.0",
"redis": "^4.5.1",
"sloc": "^0.2.1",
"smtp-server": "^3.12.0",
"socket.io": "^4.6.1",
"socket.io-client": "^4.6.1",
"tsc-alias": "^1.8.2",
"uuid": "^9.0.0",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.14",
"@types/jest": "^29.2.4",
"@types/jsonwebtoken": "^8.5.9",
"@types/lodash": "^4.14.191",
"@types/morgan": "^1.9.3",
"@types/multer": "^1.4.7",
"@types/newrelic": "^9.4.0",
"@types/newrelic__winston-enricher": "^0.1.1",
"@types/node": "^18.11.13",
"@types/nodemailer": "^6.4.8",
"@types/request": "^2.48.8",
"@types/smtp-server": "^3.5.7",
"@types/supertest": "^2.0.12",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"colors": "^1.4.0",
"dotenv": "^16.0.3",
"eslint": "^8.29.0",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"prettier": "^2.8.1",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}