-
Notifications
You must be signed in to change notification settings - Fork 807
/
package.json
32 lines (32 loc) · 1.35 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
{
"name": "whatsapp-web-reveng",
"version": "1.0.0",
"description": "A graphical, web-based client for WhatsApp Web, using the reverse engineered Python code as backend.",
"main": "index.js",
"scripts": {
"test": "concurrently --kill-others \"node index.js\" \"./backend/whatsapp-web-backend.py\"",
"start": "npm run dev",
"__run_in_docker": "concurrently \"node index.js\" \"python backend/whatsapp_web_backend.py\" ",
"dev": "concurrently --kill-others \"./node_modules/.bin/nodemon index.js -i client -e js\" \"./node_modules/.bin/nodemon --exec python ./backend/whatsapp_web_backend.py -i client -e py\" \"sass --watch client/css/main.scss:client/css/main.css\"",
"win": "concurrently --kill-others \"node_modules\\.bin\\nodemon index.js -i client -e js\" \"node_modules\\.bin\\nodemon --exec python ./backend/whatsapp_web_backend.py -i client -e py\" \"sass --watch client/css/main.scss:client/css/main.css\""
},
"author": "sigalor",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sigalor/whatsapp-web-reveng.git"
},
"dependencies": {
"express": "^4.17.1",
"fs": "0.0.1-security",
"lodash": "^4.17.21",
"path": "^0.12.7",
"string_decoder": "^1.3.0",
"ws": "^5.2.3"
},
"devDependencies": {
"concurrently": "^3.6.1",
"nodemon": "^1.19.4",
"sass": "^1.25.0"
}
}