-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.09 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.09 KB
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": "action-service",
"version": "1.0.4",
"description": "socket-service",
"main": "lib/index.js",
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc"
},
"typings": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/Stuart-Wilcox/socket-service.git"
},
"author": "stuart_wilcox@outlook.com",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Stuart-Wilcox/socket-service/issues"
},
"homepage": "https://github.com/Stuart-Wilcox/socket-service#readme",
"devDependencies": {
"@types/express": "^4.17.2",
"@types/node": "^13.7.1",
"@types/socket.io": "^2.1.4",
"@types/socket.io-client": "^1.4.32",
"@types/uuid": "^3.4.7",
"nodemon": "^2.0.2",
"ts-node": "^8.6.2",
"tsc": "^1.20150623.0",
"typescript": "^4.6.2"
},
"dependencies": {
"body-parser": "^1.19.0",
"eslint": "^6.8.0",
"express": "^4.17.1",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"uuid": "^3.4.0"
},
"peerDependencies": {
"@types/node": "*",
"@types/express": "*"
}
}