-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.12 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
{
"name": "realtime-chat-service",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"test:watch": "yarn test --watch",
"compileJson": "node src/convertToJsonSchema.ts",
"start": "ts-node-dev --respawn --transpile-only src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/serpient/realtime-chat-service.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/serpient/realtime-chat-service/issues"
},
"homepage": "https://github.com/serpient/realtime-chat-service#readme",
"dependencies": {
"@types/socket.io-client": "^1.4.33",
"ajv": "^6.12.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"socket.io": "^2.3.0",
"ts-json-schema-generator": "^0.74.0",
"ts-node-dev": "^1.0.0-pre.63",
"typescript": "^4.0.3"
},
"devDependencies": {
"@types/express": "^4.17.8",
"@types/jest": "^26.0.14",
"@types/socket.io": "^2.1.11",
"jest": "^26.4.2",
"socket.io-client": "^2.3.0",
"ts-jest": "^26.4.0",
"tslint": "5.12.1"
}
}