-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 942 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 942 Bytes
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
34
35
{
"name": "git-big",
"version": "0.1.0",
"description": "git big: GitHub-native fitness contribution graph powered by Strava data",
"type": "module",
"private": false,
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"lint": "eslint .",
"generate": "tsx src/index.ts",
"setup": "tsx scripts/setup.ts",
"e2e:live": "tsx scripts/e2e-strava.ts"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"@vitest/coverage-v8": "^2.1.9",
"eslint": "^9.16.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"dependencies": {
"@upstash/redis": "^1.36.2",
"@vercel/node": "^5.6.6"
}
}