codestats-readme/package.json
Florian Bouillon 3938dc98fc
feat: Remove Vercel dependencies (#21)
This PR remove the need to use Vercel to setup the server, currently it can still be used as such using the api folder
2022-12-05 11:47:18 +01:00

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"
}
}