forked from boostcampwm-2021/web28-NaBaaang
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) Β· 1.16 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
33
{
"name": "nabaaang",
"version": "1.0.0",
"description": "> λλ§μ λ°©μ‘μ λ§λ€μ΄λ΄! λλ°© π",
"main": "index.js",
"dependencies": {
"module-alias": "^2.2.2"
},
"devDependencies": {
"concurrently": "^6.4.0",
"npm-run-all": "^4.1.5"
},
"scripts": {
"start": "concurrently -n 'frontend,backend,socket' -c 'bgMagenta.black,bgCyan.black,bgYellow.black' \"npm run start:frontend\" \"npm run start:backend\" \"npm run start:socket\"",
"start-m": "run-p ttab:frontend ttab:backend ttab:socket",
"start:frontend": "cd frontend && yarn start",
"start:backend": "cd backend && yarn start",
"start:socket": "cd socket && yarn start",
"ttab:frontend": "ttab -a iTerm2 npm run start:frontend",
"ttab:backend": "ttab -a iTerm2 npm run start:backend",
"ttab:socket": "ttab -a iTerm2 npm run start:socket"
},
"repository": {
"type": "git",
"url": "git+https://github.com/boostcampwm-2021/web28-NaBaaang.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/boostcampwm-2021/web28-NaBaaang/issues"
},
"homepage": "https://github.com/boostcampwm-2021/web28-NaBaaang#readme"
}