-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.1 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
{
"name": "filegrid",
"version": "1.0.0",
"main": "index.js",
"bin": {
"filegrid": "src/client/client.js"
},
"scripts": {
"build": "tsc",
"dev": "nodemon src/client/client.js",
"dev:server": "nodemon -e ts --exec \"npm run build && node dist/server/server.js\""
},
"type": "module",
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/express": "^4.17.21",
"@types/multer": "^1.4.12",
"@types/node": "^22.5.5",
"@types/ping": "^0.4.4",
"nodemon": "^3.1.4",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.6.2"
},
"dependencies": {
"@types/inquirer": "^9.0.7",
"axios": "^1.7.7",
"cli-progress": "^3.12.0",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"form-data": "^4.0.0",
"inquirer": "^10.2.2",
"ip": "^2.0.1",
"local-devices": "^4.0.0",
"net": "^1.0.2",
"net-ping": "^1.2.4",
"node-nmap": "^4.0.0",
"ping": "^0.4.4",
"readline": "^1.3.0",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5",
"multer": "^1.4.5-lts.1"
}
}