-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (87 loc) · 2.38 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@koex/httpbin",
"version": "1.2.4",
"license": "MIT",
"author": "Zero",
"main": "./lib/index.js",
"bin": {
"httpbin": "./lib/cli.js",
"koex-httpbin": "./lib/cli.js"
},
"scripts": {
"build": "tsc -p tsconfig.prod.json",
"dev": "tsc-watch -p tsconfig.json --onSuccess \"node lib/serve.js\"",
"prod": "NODE_ENV=production node lib/serve.js",
"fmt": "eslint src/**/*.{ts,tsx} --fix && prettier --write src/**/{*.ts,*.tsx}",
"commit": "cz",
"clean": "rimraf -rf lib"
},
"lint-staged": {
"**/*.ts": [
"echo 'lint stage run'",
"eslint --fix",
"prettier --write --ignore-unknown"
],
"*.{json.css,md,yml,yaml}": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@cliz/web-terminal": "^0.7.10",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@koex/body": "^0.0.8",
"@koex/core": "^0.10.0",
"@koex/cors": "^0.0.2",
"@koex/ratelimit": "^1.0.4",
"@koex/static": "^0.13.2",
"@types/basic-auth": "^1.1.2",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"@zcorky/tsconfig": "^0.0.3",
"@znode/cloud-object-storage": "^0.3.8",
"@znode/dns": "^0.0.1",
"@znode/mail": "^0.0.5",
"@zodash/2fa": "^0.0.9",
"@zodash/bankcard": "^0.0.5",
"@zodash/captcha": "^0.0.4",
"@zodash/crypto": "^0.0.3",
"@zodash/delay": "^0.0.11",
"@zodash/format": "^1.0.1-alpha.11",
"@zodash/generate-password": "^0.0.1",
"@zodash/nobot": "^0.0.1",
"@zodash/qrcode": "^0.1.1",
"@zodash/shorturl": "^0.2.5",
"@zodash/uuid": "^0.0.3",
"@zodash/websocket": "^0.1.5",
"@zoproxy/batch": "^0.0.36",
"basic-auth": "^2.0.1",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.31.0",
"eslint-config-airbnb": "^18.2.1",
"husky": "^7.0.1",
"lint-staged": "^11.0.1",
"prettier": "^2.3.2",
"socket.io": "^3.1.0",
"ts-node": "^10.1.0",
"typescript": "^4.3.5",
"ws": "^7.4.2"
},
"devDependencies": {
"@types/node": "^16.4.0",
"@types/pdfjs-dist": "^2.1.7",
"@types/socket.io": "^2.1.13",
"@types/ws": "^7.4.0",
"tsc-watch": "^4.2.9",
"tsconfig-paths": "^3.9.0"
},
"publishConfig": {
"access": "public"
}
}