-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
32 lines (32 loc) · 867 Bytes
/
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
{
"name": "github-stats-card",
"homepage": "https://github.com/KasRoudra/github-stats-card",
"version": "1.0.0",
"description": "Github Stats Card Generator",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write .",
"dev": "nodemon src/index.ts",
"build": "node ./node_modules/typescript/bin/tsc",
"start": "node dist/index.js"
},
"author": "KasRoudra",
"license": "MIT",
"dependencies": {
"cors": "^2.8.5",
"cross-fetch": "^3.1.5",
"express": "^4.17.3",
"node-emoji": "^1.11.0"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/node": "^18.16.3",
"@types/node-emoji": "^1.8.2",
"nodemon": "^2.0.15",
"prettier": "^2.6.2",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}