-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.38 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "gcal-focus-time-metrics",
"version": "1.0.0",
"description": "Measure productivity time through google calendar",
"exports": "./index.js",
"repository": "git@github.com:alexnederlof/gcal-focus-time-metrics.git",
"author": "Alex Nederlof <alex@nederlof.com>",
"license": "MIT",
"private": false,
"type": "module",
"engines": {
"node": ">=18"
},
"scripts": {
"go": "ts-node src/index.ts",
"prepare": "husky install",
"build": "tsc",
"watch": "tsnodemon -x 'node build/index.js'"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.2",
"@types/cookie-parser": "^1.4.6",
"@types/express": "^4.17.20",
"@types/luxon": "^3.3.3",
"@types/node": "^20.9.0",
"@types/react-dom": "^18.2.15",
"husky": "^8.0.3",
"prettier": "^3.1.0",
"pretty-quick": "^3.1.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"cookie-parser": "^1.4.6",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-prom-bundle": "^6.6.0",
"express-request-context": "^1.0.1",
"google-auth-library": "^9.2.0",
"googleapis": "121.0.0",
"helmet": "^7.1.0",
"jwt-decode": "^3.1.2",
"loglevel": "^1.8.1",
"lru-cache": "^10.0.1",
"luxon": "^3.4.3",
"p-limit": "^4.0.0",
"prom-client": "^14.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsnodemon": "^1.2.2"
}
}