-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.26 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
{
"name": "sample-chat-backend",
"version": "1.0.1",
"description": "A sample real-time chat built on Express and Socket.io.",
"engines": {
"node": ">= 12.13 <13"
},
"devDependencies": {
"@types/express": "^4.17.6",
"@types/jest": "~26.0.0",
"@types/node": "~12.12.47",
"@types/socket.io": "^2.1.8",
"@typescript-eslint/eslint-plugin": "~3.2.0",
"@typescript-eslint/parser": "~3.2.0",
"eslint": "~7.2.0",
"eslint-config-prettier": "~6.11.0",
"eslint-plugin-jest": "~23.13.2",
"jest": "~26.0.1",
"prettier": "~2.0.5",
"rimraf": "~3.0.2",
"ts-jest": "~26.1.0",
"tsutils": "~3.17.0",
"typescript": "~3.9.4"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/goooseman/sample-chat-backend.git"
},
"scripts": {
"clean": "rimraf coverage build tmp",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest --coverage",
"test:watch": "jest --watch",
"start": "ts-node src/main"
},
"author": "goooseman",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.1",
"socket.io": "^2.3.0",
"ts-node": "^8.10.2",
"tslib": "~2.0.0"
}
}