-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.21 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
{
"name": "uhttp-exit-app",
"version": "3.4.0",
"description": "u(nlinked)HTTP exit application",
"author": "HOPR Association",
"main": "src/index.ts",
"license": "GPL-3.0",
"scripts": {
"build": "tsc",
"format": "prettier --write src/ .github/ *.js *.ts *.json *.md",
"format:ci": "prettier --check src/ .github/ *.js *.ts *.json *.md",
"lint": "eslint --fix src/",
"lint:ci": "eslint --max-warnings 0 src/",
"start": "node build/index.js",
"test": "jest --coverage"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^2.1.0",
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.12",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"eslint": "8",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@hoprnet/uhttp-lib": "^3.8.0",
"debug": "^4.3.4",
"sqlite3": "^5.1.7",
"ws": "^8.18.0"
}
}