forked from Oferlis/sharkio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 1.15 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
{
"name": "@idodav/sharkio",
"version": "0.0.1",
"description": "Micro service network monitoring and development tool",
"scripts": {
"dashboard": "cd ./client && npm run dev",
"sniffer": "cd ./server && npm run dev",
"build:dashboard": "cd ./client && npm run build",
"build:sniffer": "cd ./server && npm run build",
"format:dashboard": "cd ./client && npm run format",
"format:sniffer": "cd ./server && npm run format",
"build": "concurrently --kill-others \"cd ./server && npm run build\" \"cd ./client && npm run build\"",
"dev": "concurrently --kill-others \"cd ./server && npm run dev\" \"cd ./client && npm run dev\"",
"demo": "concurrently --kill-others \"nodemon dummy-server.js\" \"npm run dev\"",
"format": "prettier -w .",
"test:server": "cd ./server && npm test",
"test:client": "cd ./client && npm test",
"test": "concurrently \"npm run test:server\" \"npm run test:client\"",
"prepare": "husky install",
"postinstall": "husky install"
},
"author": "Ido David",
"license": "ISC",
"dependencies": {
"concurrently": "^8.2.2",
"husky": "^8.0.3",
"prettier": "^3.1.0"
}
}