-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.25 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": "discovery-server",
"version": "1.0.0",
"description": "WhatsApp Proxy Discovery server | Allows WhatsApp Proxies to announce themselfs to the backend",
"main": "dist/index.js",
"scripts": {
"prebuild": "tslint -c tslint.json -p tsconfig.json --fix",
"build": "tsc",
"prestart": "npm run build",
"start": "node .",
"format": "prettier --write \"**/*.{js,ts,json,less,css,md,html}\"",
"format:check": "prettier --loglevel debug --check \"**/*.{js,ts,json,less,css,md,html}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/WhatsApp-Proxy/discovery-server.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/WhatsApp-Proxy/discovery-server/issues"
},
"homepage": "https://github.com/WhatsApp-Proxy/discovery-server#readme",
"devDependencies": {
"@types/express": "^4.17.15",
"@types/fancy-log": "^2.0.0",
"@types/http-errors": "^2.0.1",
"@types/node": "^18.11.18",
"prettier": "^2.8.2",
"tslint": "^6.1.3"
},
"dependencies": {
"axios": "^1.2.2",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"fancy-log": "^2.0.0",
"http-errors": "^2.0.0",
"nodejs-tcp-ping": "^1.0.3",
"typescript": "^4.9.4"
}
}