Skip to content

Commit

Permalink
chore: 프로젝트 초기설정 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
JunilHwang committed Jun 18, 2024
1 parent 36b2c06 commit abc27cb
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
14 changes: 14 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"name": "js-racingcar-deep",
"version": "1.0.0",
"description": "자동차 경주 미션을 통해서 학습하는 클린코드",
"main": "./src/main.js",
"type": "module",
"scripts": {
"start": "node src/main.js",
"start:watch": "node --watch src/main.js"
},
"keywords": [],
"author": "",
"license": "ISC"
}
5 changes: 5 additions & 0 deletions src/main.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
function main() {
console.log('main의 내용을 채워주세요');
}

main();

0 comments on commit abc27cb

Please sign in to comment.