-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.23 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "github-trending",
"version": "1.0.0",
"description": "GitHub Trending - 自动获取并展示 GitHub 热门开源项目",
"main": "server/index.js",
"scripts": {
"start": "node server/index.js",
"dev": "node server/index.js",
"lint": "eslint server/ frontend/src/ --ext .js,.jsx",
"format": "prettier --write \"server/**/*.js\" \"frontend/src/**/*.{js,jsx,css}\"",
"test": "vitest run",
"test:watch": "vitest",
"build": "npm --prefix frontend run build"
},
"keywords": [
"github",
"trending",
"open-source"
],
"author": "",
"license": "MIT",
"type": "commonjs",
"dependencies": {
"axios": "^1.16.0",
"cheerio": "^1.2.0",
"cors": "^2.8.6",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"express-rate-limit": "^8.5.2",
"express-validator": "^7.3.2",
"helmet": "^8.2.0",
"node-cron": "^4.2.1",
"node-fetch": "^2.6.7",
"proper-lockfile": "^4.1.2"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^3.3.0",
"supertest": "^7.0.0",
"vitest": "^2.0.0"
},
"engines": {
"node": ">=22.5.0"
}
}