-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
26 lines (26 loc) · 1.3 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
{
"scripts": {
"dev": "concurrently -n \"frontend,backend\" -c \"red,blue\" \"npm run dev:frontend\" \"npm run dev:backend\"",
"dev:frontend": "cd frontend && npm run dev:local",
"dev:backend": "cd backend && npm run start:watch",
"i": "npm i && concurrently -n \"frontend,backend,auth-bot\" -c \"red,blue,green\" \"cd frontend && npm i\" \"cd backend && npm i\" \"cd auth-bot && npm i\"",
"prod:build": "cd frontend && npm run build-prod",
"prod:run": "cd backend && npm run start:watch",
"demo:build": "cd frontend && npm run build:only-demo",
"type:check": "concurrently -n \"frontend,backend,auth-bot\" -c \"red,blue,green\" \"npm run type:check:frontend\" \"npm run type:check:backend\" \"npm run type:check:auth-bot\"",
"type:check:backend": "cd backend && npm run type:check",
"type:check:frontend": "cd frontend && npm run type:check",
"type:check:auth-bot": "cd auth-bot && npm run type:check"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"concurrently": "^8.0.1",
"eslint": "^8.41.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.27.5",
"prettier": "2.8.8"
}
}