-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.47 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
{
"name": "messenger-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"tsc": "tsc",
"dev": "nodemon src/app.ts",
"start": "tsc && node dist/app.js",
"lint": "eslint --ext .ts .",
"lint:fix": "eslint --fix --ext .ts ."
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcryptjs": "^2.4.4",
"@types/compression": "^1.7.3",
"@types/cors": "^2.8.14",
"@types/express": "^4.17.19",
"@types/jsonwebtoken": "^9.0.3",
"@types/luxon": "^3.3.2",
"@types/morgan": "^1.9.6",
"@types/passport": "^1.0.13",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"eslint": "^8.51.0",
"nodemon": "^3.0.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@types/cookie-parser": "^1.4.5",
"@types/http-errors": "^2.0.3",
"@types/passport-jwt": "^3.0.11",
"@types/passport-local": "^1.0.36",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"express-validator": "^7.0.1",
"helmet": "^7.0.0",
"http-errors": "^2.0.0",
"jsonwebtoken": "^9.0.2",
"luxon": "^3.4.3",
"mongoose": "^7.6.2",
"morgan": "^1.10.0",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"socket.io": "^4.7.2",
"ts-node": "^10.9.1"
}
}