generated from isSerge/node-app-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 1.03 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
{
"name": "gh-contribution-tracker",
"version": "1.0.0",
"description": "The GitHub Contribution Tracker is a TypeScript application that automates the tracking and summarizing of a user's GitHub contributions to a specific organization, and updates the data on a Notion page",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"build": "rm -rf dist && tsc",
"lint": "eslint . --ext .ts",
"test": "node --test --loader ts-node/esm src/test/*.ts"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@notionhq/client": "^2.2.5",
"@octokit/graphql": "^5.0.6",
"dotenv": "^16.0.3",
"langchain": "^0.0.81",
"pino": "^8.10.0",
"pino-pretty": "^9.3.0"
},
"devDependencies": {
"@types/node": "^18.14.0",
"@types/pino": "^7.0.5",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^8.34.0",
"eslint-plugin-eslint-plugin": "^5.0.8",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}