-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 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
{
"name": "braekhus",
"version": "0.0.1",
"description": "Hole-punching reverse HTTPS proxy",
"private": true,
"devDependencies": {
"@swc/core": "^1.3.23",
"@swc/helpers": "^0.4.14",
"@swc/jest": "^0.2.26",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@types/express": "4.17.14",
"@types/jest": "^29.2.2",
"@types/lodash": "^4.14.195",
"@types/node": "^18.11.18",
"@types/supertest": "^2.0.12",
"@types/ws": "^8.5.5",
"@types/yargs": "^17.0.13",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^26.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.3",
"jest": "29.2.1",
"jest-extended": "3.2.4",
"jest-mock": "29.2.1",
"jscpd": "^3.5.4",
"lint-staged": "^13.1.0",
"nodemon": "2.0.20",
"pino-pretty": "^10.0.1",
"prettier": "^2.8.0",
"pretty-quick": "^3.1.3",
"regenerator-runtime": "^0.13.11",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "10.9.1",
"tsconfig-paths": "^4.1.0",
"typeconv": "^2.1.0",
"typescript": "^4.8.4"
},
"dependencies": {
"axios": "^1.4.0",
"express": "^4.18.2",
"jose": "^4.14.4",
"json-rpc-2.0": "^1.6.0",
"json-stream-stringify": "^3.1.0",
"lodash": "^4.17.21",
"node-jq": "^4.2.2",
"path-to-regexp": "^6.2.1",
"pino": "^8.14.1",
"pino-http": "^8.3.3",
"ssl-root-cas": "^1.3.1",
"ws": "^8.13.0",
"yargs": "^17.7.2"
},
"scripts": {
"build": "yarn clean && tsc --project ./",
"clean": "rm -rf ./dist",
"test": "NODE_ENV=test jest --color --testPathIgnorePatterns '.*\\.((integration|e2e)\\.test|snap)\\.tsx?'",
"test:pretty": "NODE_ENV=test jest --color --testPathIgnorePatterns '.*\\.((integration|e2e)\\.test|snap)\\.tsx?' | pino-pretty",
"start:dev:server": "NODE_ENV=development nodemon cli server",
"start:prod:server": "NODE_PATH=dist node dist/cli server",
"start:dev:client": "NODE_ENV=development nodemon cli client",
"start:prod:client": "NODE_PATH=dist node dist/cli client",
"prepare": "husky install",
"format": "prettier --write '**/*.{html,js,ts,json,less,md}'",
"format:quick": "pretty-quick --branch origin/main"
},
"lint-staged": {
"*.(md|yaml|yml|json|js|ts|jsx|tsx)": "prettier --check"
}
}