김성욱

Test

File mode changed
File mode changed
File mode changed
File mode changed
File mode changed
File mode changed
File mode changed
1 -<p align="center"><img src="http://cdn.ggilbo.com/news/photo/202203/901729_732791_5437.jpg" width="300" height="300"></p>
2 -
3 -<!-- PROJECT LOGO -->
4 -<br />
5 -<div align="center">
6 -
7 - <h1 align="center">Find MBTI chatbot</h1>
8 -
9 -</div>
10 -
11 -
12 -
13 -<!-- TABLE OF CONTENTS -->
14 -<details>
15 - <summary>Table of Contents</summary>
16 - <ol>
17 - <li>
18 - <a href="#about-the-project">About The Project</a>
19 - </li>
20 - <li><a href="#roadmap">Roadmap</a></li>
21 - <li><a href="#contributing">Contributing</a></li>
22 - <li><a href="#contact">Contact</a></li>
23 - </ol>
24 -</details>
25 -
26 -
27 -
28 -<!-- ABOUT THE PROJECT -->
29 -## About The Project
30 -
31 -* MBTI를 알기 위해서는 딱딱한 질문식의 설문을 일일히 체크해야 합니다.
32 -* 저희는 그런 방식보다는 챗봇과의 대화를 통해 MBTI를 알아내는 방식을 챗봇에 적용하고자 합니다.
33 -* 저희 챗봇은 LINE Messaging API를 기반으로 만들어졌습니다.
34 -
35 -
36 -<p align="right">(<a href="#top">back to top</a>)</p>
37 -
38 -
39 -
40 -### Built With
41 -
42 -* [Node.js](https://nodejs.org/ko/)
43 -
44 -<p align="right">(<a href="#top">back to top</a>)</p>
45 -
46 -
47 -
48 -<!-- ROADMAP -->
49 -## Roadmap
50 -
51 -- [ ] Line/kakao 채널 만들기
52 -- [ ] express 서버 연결
53 -- [ ] test
54 -- [ ] MBTI설문을 챗봇에 적용시키기
55 -
56 -
57 -<p align="right">(<a href="#top">back to top</a>)</p>
58 -
59 -
60 -
61 -<!-- CONTRIBUTING -->
62 -## Contributing
63 -
64 -1. Fork the Project
65 -2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`)
66 -3. Commit your Changes (`git commit -m 'Add some AmazingFeature'`)
67 -4. Push to the Branch (`git push origin feature/AmazingFeature`)
68 -5. Open a Pull Request
69 -
70 -<p align="right">(<a href="#top">back to top</a>)</p>
71 -
72 -
73 -
74 -<!-- CONTACT -->
75 -## Contact
76 -
77 -* 김성욱 : so3659@khu.ac.kr
78 -* 공정훈 : kjhun1208@khu.ac.kr
79 -* 고민경: komg00@khu.ac.kr
80 -
81 -* Project Link : http://khuhub.khu.ac.kr/2018103692/find_mbti_bot)
82 -
83 -<p align="right">(<a href="#top">back to top</a>)</p>
84 -
85 -
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
1 +{
2 + "name": "example",
3 + "version": "1.0.0",
4 + "description": "",
5 + "main": "index.js",
6 + "scripts": {
7 + "start": "node index.js",
8 + "test": "echo \"Error: no test specified\" && exit 1"
9 + },
10 + "author": "",
11 + "license": "ISC",
12 + "engines": {
13 + "node": "16.14.2",
14 + "npm": "8.5.0"
15 + },
16 + "dependencies": {
17 + "body-parser": "^1.20.0",
18 + "express": "^4.18.1",
19 + "morgan": "^1.10.0"
20 + }
21 +}