-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.33 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
{
"name": "messaging-api",
"version": "1.0.0",
"description": "Messaging API with TypeScript, Express 5, and Mongoose",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"test:client": "node src/test-client.js",
"lint": "eslint \"src/**/*.{ts,js}\" --fix",
"lint:check": "eslint \"src/**/*.{ts,js}\"",
"format": "prettier --write \"src/**/*.ts\"",
"register-user": "ts-node scripts/register-user.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@socket.io/mongo-adapter": "^0.3.2",
"@socket.io/redis-adapter": "^8.3.0",
"axios": "^1.7.9",
"dotenv": "^16.3.1",
"express": "^5.0.0-alpha.8",
"express-async-router": "^0.1.15",
"mongoose": "^7.6.3",
"mongoose-autopopulate": "^1.1.0",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/express": "^4.17.20",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.0.3",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2"
}
}