-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.43 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "github-insights",
"version": "1.0.0",
"description": "Get insights for your Github repositories",
"keywords": [
"Data Vis",
"Insights",
"Github insights",
"Github statistics"
],
"homepage": "https://github-insights.atanas.info",
"bugs": {
"url": "https://github.com/scriptex/github-insights/issues",
"email": "hi@atanas.info"
},
"license": "MIT",
"author": "Atanas Atanasov <hi@atanas.info> (https://atanas.info)",
"funding": "https://github.com/sponsors/scriptex",
"repository": {
"type": "git",
"url": "github:scriptex/github-insights"
},
"scripts": {
"fetch": "nodemon api/index.js",
"start": "parcel serve app/index.html",
"build": "rm -rf dist && parcel build app/index.html --public-url '/'"
},
"dependencies": {
"chalk": "4.1.2",
"date-fns": "4.1.0",
"dotenv": "16.4.5",
"express": "4.21.1",
"node-fetch": "2.7.0",
"nodemon": "3.1.7",
"ora": "5.4.1",
"prop-types": "15.8.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-is": "18.3.1",
"recharts": "2.13.3",
"scriptex-socials": "1.8.0",
"styled-components": "6.1.13",
"universal-github-client": "1.0.3",
"yargs": "17.7.2"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/plugin-transform-runtime": "7.25.9",
"@babel/preset-env": "7.26.0",
"@babel/preset-react": "7.25.9",
"parcel": "2.13.2",
"process": "0.11.10"
},
"nodemonConfig": {
"verbose": false,
"ignore": [
"insights.json"
]
}
}