mirror of
https://github.com/Aviortheking/codestats-readme.git
synced 2025-04-22 10:42:08 +00:00
This PR remove the need to use Vercel to setup the server, currently it can still be used as such using the api folder
34 lines
806 B
JSON
34 lines
806 B
JSON
{
|
|
"name": "github-readme-stats",
|
|
"version": "1.0.0",
|
|
"description": "Dynamically generate stats for your github readmes",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"dev": "ts-node ./index.ts",
|
|
"build": "tsc --project ./tsconfig.json",
|
|
"start": "node dist/index.js",
|
|
"theme-readme-gen": "ts-node scripts/generate-theme-doc"
|
|
},
|
|
"author": "Anurag Hazra",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/express": "^4",
|
|
"@types/node-fetch": "^2",
|
|
"@types/react": "^18",
|
|
"@types/react-dom": "^18",
|
|
"@typescript-eslint/eslint-plugin": "^5",
|
|
"@typescript-eslint/parser": "^5",
|
|
"eslint": "^8",
|
|
"ts-node": "^10"
|
|
},
|
|
"dependencies": {
|
|
"@dzeio/config": "^1.1.8",
|
|
"express": "^4",
|
|
"node-fetch": "^2",
|
|
"react": "^18",
|
|
"react-dom": "^18",
|
|
"typescript": "^4",
|
|
"word-wrap": "^1"
|
|
}
|
|
}
|