DailyHotApi/package.json

33 lines
826 B
JSON
Raw Permalink Normal View History

2023-03-14 08:04:10 +00:00
{
"name": "dailyhot_api",
2024-01-17 07:07:51 +00:00
"version": "1.0.8",
2024-01-02 03:20:50 +00:00
"description": "An api on Today's Hot list",
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:38:29 +00:00
"prd": "pm2 start index.js",
"build": "node 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": {
2024-01-17 07:07:51 +00:00
"axios": "^1.6.3",
2023-03-14 08:04:10 +00:00
"cheerio": "1.0.0-rc.12",
2024-01-17 07:07:51 +00:00
"dotenv": "^16.3.1",
"eslint": "^8.56.0",
"eslint-plugin-vue": "^9.19.2",
"koa": "^2.15.0",
"koa-bodyparser": "^4.4.1",
"koa-router": "^12.0.1",
2023-03-14 08:04:10 +00:00
"koa-static": "^5.0.0",
2024-01-17 07:07:51 +00:00
"koa-views": "^8.1.0",
2023-03-14 08:04:10 +00:00
"koa2-cors": "^2.0.6",
2023-03-24 09:05:29 +00:00
"node-cache": "^5.1.2",
"nodemon": "^2.0.22",
2024-01-17 07:07:51 +00:00
"prettier": "^3.1.1"
2023-03-14 08:04:10 +00:00
}
}