diff --git a/package.json b/package.json new file mode 100644 index 0000000..96078a6 --- /dev/null +++ b/package.json @@ -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" +} diff --git a/src/main.js b/src/main.js new file mode 100644 index 0000000..96bab59 --- /dev/null +++ b/src/main.js @@ -0,0 +1,5 @@ +function main() { + console.log('main의 내용을 채워주세요'); +} + +main();