forked from cadia-lvl/samromur-chat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 1.67 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
{
"name": "samromur-chat",
"version": "1.1.0",
"description": "voice-chat recording software",
"license": "MIT",
"scripts": {
"build": "concurrently -p \"[{name}]\" -n \"BE,FE\" -c \"bgBlue.bold,bgMagenta.bold\" \"cd backend && npm run build\" \"cd frontend && npm run build\"",
"build:backend": "cd backend && npm run build",
"build:frontend": "cd frontend && npm run build",
"dev": "concurrently -p \"[{name}]\" -n \"BE,FE\" -c \"bgBlue.bold,bgMagenta.bold\" \"cd backend && npm run dev\" \"cd frontend && npm run start\"",
"lint": "concurrently -p \"[{name}]\" -n \"BE,FE\" -c \"bgBlue.bold,bgMagenta.bold\" \"cd backend && npm run eslint\" \"cd frontend && npm run eslint\"",
"typedoc": "concurrently -p \"[{name}]\" -n \"BE,FE\" -c \"bgBlue.bold,bgMagenta.bold\" \"cd backend && npm run typedoc\" \"cd frontend && npm run typedoc\"",
"docs": "concurrently -p \"[{name}]\" -n \"BE,FE\" -c \"bgBlue.bold,bgMagenta.bold\" \"cd docs && bundle exec jekyll build && npm run typedoc && bundle exec jekyll serve --skip-initial-build -o\"",
"postinstall": "concurrently \"cd backend && npm install\" \"cd frontend && npm install\"",
"start": "cd backend && npm run start",
"check-format": "concurrently -p \"[{name}]\" -n \"BE,FE\" -c \"bgBlue.bold,bgMagenta.bold\" \"prettier --check backend/src/**/*.{ts,tsx}\" \"prettier --check frontend/src/**/*.{ts,tsx}\"",
"auto-format": "concurrently -p \"[{name}]\" -n \"BE,FE\" -c \"bgBlue.bold,bgMagenta.bold\" \"prettier --write backend/src/**/*.{ts,tsx}\" \"prettier --write frontend/src/**/*.{ts,tsx}\""
},
"dependencies": {
"concurrently": "^5.3.0"
},
"devDependencies": {
"prettier": "^2.1.2"
}
}