-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 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
43
44
45
46
47
48
49
50
51
{
"name": "blackhole",
"version": "0.0.4",
"type": "module",
"license": "gpl-3.0",
"author": {
"name": "Rajaneesh R",
"email": "rajaneeshr@proton.me",
"url": "https://r-rajaneesh.vercel.app"
},
"bin": "./build/server.js",
"scripts": {
"dev": "ts-node --esm src/server.ts",
"build": "node build.js & tsc",
"start": "node build/server.js"
},
"dependencies": {
"axios": "^1.3.2",
"better-sqlite3": "^8.1.0",
"bufferutil": "^4.0.7",
"cors": "^2.8.5",
"dhcp": "^0.2.20",
"dns2": "^2.0.5",
"ejs": "^3.1.8",
"express": "^4.18.2",
"fs-extra": "^11.1.0",
"globby": "^13.1.3",
"helmet": "^6.0.1",
"jquery": "^3.6.3",
"nunjucks": "^3.2.3",
"socket.io": "^4.6.0",
"socket.io-client": "^4.6.0",
"stegcloak": "^1.1.1",
"utf-8-validate": "^5.0.10"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/better-sqlite3": "^7.6.3",
"@types/cors": "^2.8.13",
"@types/dns2": "^2.0.1",
"@types/ejs": "^3.1.2",
"@types/express": "^4.17.17",
"@types/fs-extra": "^11.0.1",
"@types/glob": "^8.0.1",
"@types/globby": "^9.1.0",
"@types/helmet": "^4.0.0",
"@types/jquery": "^3.5.16",
"tslib": "^2.4.1",
"typescript": "^4.9.3"
}
}