DailyHotApi/package.json

33 lines
814 B
JSON
Raw Normal View History

2023-03-14 08:04:10 +00:00
{
"name": "dailyhot_api",
"version": "1.0.3",
2023-06-01 07:15:10 +00:00
"description": "一个今日热榜",
2023-03-24 09:05:29 +00:00
"main": "index.js",
2023-03-14 08:04:10 +00:00
"scripts": {
"format": "prettier --write .",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
2023-03-24 09:05:29 +00:00
"start": "node index.js",
"dev": "npx nodemon index.js",
2023-12-06 01:25:26 +00:00
"prd": "pm2 start index.js"
2023-03-14 08:04:10 +00:00
},
"author": "imsyy",
2023-03-24 08:24:54 +00:00
"license": "MIT",
2023-03-14 08:04:10 +00:00
"dependencies": {
"axios": "^1.3.4",
"cheerio": "1.0.0-rc.12",
"dotenv": "^16.0.3",
2023-12-06 01:25:26 +00:00
"eslint": "^8.48.0",
"eslint-plugin-vue": "^9.17.0",
2023-03-14 08:04:10 +00:00
"koa": "^2.14.1",
"koa-bodyparser": "^4.3.0",
"koa-router": "^12.0.0",
"koa-static": "^5.0.0",
"koa-views": "^8.0.0",
"koa2-cors": "^2.0.6",
2023-03-24 09:05:29 +00:00
"node-cache": "^5.1.2",
"nodemon": "^2.0.22",
2023-12-06 01:25:26 +00:00
"prettier": "^3.0.2",
"winston": "^3.11.0"
2023-03-14 08:04:10 +00:00
}
}