-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.19 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.19 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
{
"name": "github-trending-webtool",
"version": "1.0.1",
"private": true,
"author": "Encore Shao",
"description": "A Web application for discovering and analyzing trending GitHub repositories. Features a beautiful homepage, subscription system, and live demo with comprehensive repository analysis tools.",
"license": "MIT",
"homepage": "https://github.com/encoreshao/github-trending",
"repository": {
"type": "git",
"url": "https://github.com/encoreshao/github-trending.git"
},
"bugs": {
"url": "https://github.com/encoreshao/github-trending/issues"
},
"keywords": [
"github",
"trending",
"webtool",
"encore"
],
"main": "index.js",
"type": "module",
"dependencies": {
"antd": "^5.13.0",
"axios": "^1.6.8",
"file-saver": "^2.0.5",
"json2csv": "^5.0.7",
"papaparse": "^5.5.3",
"react": "^18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.8.0"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.2.1",
"dotenv": "^16.5.0",
"fs-extra": "^11.3.0",
"vite": "^5.2.0"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
}
}