-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 968 Bytes
/
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
34
{
"name": "fe-news-bot",
"version": "1.0.0",
"description": "프론트엔드 최신 포스트를 가져오는 봇",
"main": "index.js",
"scripts": {
"build": "tsc && tsc-alias",
"start": "yarn run build && node dist/app",
"preview-kfa": "cross-env PREVIEW_KFA=true yarn run start",
"preview-medium": "cross-env PREVIEW_MEDIUM=true yarn run start",
"preview-yozm": "cross-env PREVIEW_YOZM=true yarn run start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/haesoo9410/fe-news-bot.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/haesoo9410/fe-news-bot/issues"
},
"homepage": "https://github.com/haesoo9410/fe-news-bot#readme",
"dependencies": {
"axios": "^0.26.1",
"cheerio": "^1.0.0-rc.10",
"typescript": "^5.3.3"
},
"devDependencies": {
"@types/node": "^17.0.23",
"cross-env": "^7.0.3",
"tsc-alias": "^1.6.5"
}
}