-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.38 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
{
"name": "socketio",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "commonjs",
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node src/index.ts",
"start:client": "ts-node mock_endpoint/client.ts",
"start:ai": "ts-node mock_endpoint/ai.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"amqplib": "^0.10.3",
"axios": "^1.5.0",
"cors": "^2.8.5",
"dd-trace": "^4.16.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"helmet": "^7.0.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.5.1",
"pino": "^8.15.1",
"reflect-metadata": "^0.1.13",
"socket.io": "^4.7.2",
"typedi": "^0.10.0",
"typescript": "^5.2.2",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/amqplib": "^0.10.1",
"@types/cors": "^2.8.14",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/uuid": "^9.0.3",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.49.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.28.1",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"socket.io-client": "^4.7.2",
"ts-node": "^10.9.1"
}
}