-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 902 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 902 Bytes
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
{
"name": "wifi-bruteforce-web",
"version": "1.0.0",
"description": "Sistema web para teste de segurança WiFi",
"main": "server/index.js",
"scripts": {
"server": "nodemon server/index.js",
"client": "cd client && npm start",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"install-client": "cd client && npm install",
"build": "npm run install-client && cd client && npm run build",
"install-all": "npm install && cd client && npm install",
"start": "node server/index.js"
},
"keywords": [
"wifi",
"security",
"penetration-test"
],
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dockerode": "^4.0.9",
"express": "^4.18.2",
"multer": "^1.4.5-lts.1",
"ws": "^8.14.2"
},
"devDependencies": {
"concurrently": "^8.2.1",
"nodemon": "^3.0.1"
}
}