-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.16 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.16 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
{
"name": "br-local-node-server",
"version": "1.0.0",
"description": "Local node server for each GB",
"main": "index.js",
"scripts": {
"start": "tsc-watch --onSuccess \"node ./dist/server.js\"",
"prod": "npm run start",
"dev": "export ADDRESS=localhost && npm run start",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GarbageBytes/br-local-node-server.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/GarbageBytes/br-local-node-server/issues"
},
"homepage": "https://github.com/GarbageBytes/br-local-node-server#readme",
"devDependencies": {
"@types/node": "^13.1.1",
"@types/roslib": "^1.0.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"tsc-watch": "^4.0.0",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.4"
},
"dependencies": {
"@types/axios": "^0.14.0",
"@types/ip": "^1.1.0",
"@types/socket.io-client": "^1.4.32",
"axios": "^0.19.0",
"ip": "^1.1.5",
"roslib": "^1.0.1",
"rxjs": "^6.5.4",
"socket.io-client": "^2.3.0"
}
}