Skip to content

Commit 6333eb1

Browse files
committed
feat: 스크립트 alias 추가
1 parent dc903eb commit 6333eb1

File tree

1 file changed

+27
-22
lines changed

1 file changed

+27
-22
lines changed

package.json

Lines changed: 27 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,28 @@
11
{
2-
"name": "octodocs",
3-
"version": "1.0.0",
4-
"main": "index.js",
5-
"repository": "https://github.com/boostcampwm-2024/web15-OctoDocs.git",
6-
"author": "ez <[email protected]>",
7-
"license": "MIT",
8-
"scripts": {
9-
"dev": "turbo run dev",
10-
"build": "turbo run build",
11-
"start": "node apps/backend/dist/main.js",
12-
"lint": "turbo run lint",
13-
"test": "turbo run test"
14-
},
15-
"dependencies": {
16-
"turbo": "^2.3.0"
17-
},
18-
"private": true,
19-
"workspaces": [
20-
"apps/*"
21-
],
22-
"packageManager": "[email protected]"
23-
}
2+
"name": "octodocs",
3+
"version": "1.0.0",
4+
"main": "index.js",
5+
"repository": "https://github.com/boostcampwm-2024/web15-OctoDocs.git",
6+
"author": "ez <[email protected]>",
7+
"license": "MIT",
8+
"scripts": {
9+
"dev": "turbo run dev",
10+
"build": "turbo run build",
11+
"start": "node apps/backend/dist/main.js",
12+
"lint": "turbo run lint",
13+
"test": "turbo run test",
14+
"docker:dev": "docker compose -f compose.local.yml up",
15+
"docker:dev:down": "docker compose -f compose.local.yml down",
16+
"docker:dev:clean": "docker compose -v -f compose.local.yml down",
17+
"docker:dev:fclean": "docker compose -v -f compose.local.yml down --rmi all",
18+
"ssl:generate": "cd services/nginx/ssl && bash ./generate-cert.sh"
19+
},
20+
"dependencies": {
21+
"turbo": "^2.3.0"
22+
},
23+
"private": true,
24+
"workspaces": [
25+
"apps/*"
26+
],
27+
"packageManager": "[email protected]"
28+
}

0 commit comments

Comments
 (0)