-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 909 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
33
{
"name": "hall-of-contributions",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "dist/index.js",
"types": "dist/types",
"scripts": {
"build": "rm -rf dist && tsc",
"dev": "nodemon --watch src ./src/index.ts",
"refresh-data": "ts-node src/scripts.ts",
"start": "node dist/index.js"
},
"keywords": [],
"repository": {
"type": "git",
"url": "git+https://github.com/nick-w-nick/hall-of-contributions.git"
},
"author": "https://github.com/nick-w-nick",
"license": "MIT",
"dependencies": {
"@octokit/rest": "^21.0.2"
},
"devDependencies": {
"@octokit/types": "^13.6.1",
"@types/node": "^18.18.0",
"@vercel/node": "^3.2.25",
"dotenv": "^16.4.5",
"nodemon": "^3.1.7",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
}
}