-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.35 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
{
"name": "whatsapp-proxy-backend",
"version": "1.0.1",
"description": "WhatsApp Proxy Backend server | Provides a list with all proxies",
"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}\"",
"migrate": "npm run prestart && node ./dist/migrations/migrations.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WhatsApp-Proxy/whatsapp-proxy-backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/WhatsApp-Proxy/whatsapp-proxy-backend/issues"
},
"homepage": "https://github.com/WhatsApp-Proxy/whatsapp-proxy-backend#readme",
"devDependencies": {
"@types/express": "^4.17.15",
"@types/fancy-log": "^2.0.0",
"@types/http-errors": "^2.0.4",
"@types/node": "^18.11.18",
"prettier": "^2.8.2",
"tslint": "^6.1.3"
},
"dependencies": {
"dotenv": "^16.0.3",
"express": "^4.19.2",
"fancy-log": "^2.0.0",
"http-errors": "^2.0.0",
"mongoose": "^6.11.3",
"nodejs-tcp-ping": "^1.0.3",
"tsc": "^2.0.4",
"typescript": "^5.4.5"
}
}