This repository was archived by the owner on May 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.28 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.28 KB
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
{
"name": "notion-gcal-sync",
"version": "1.0.1",
"description": "",
"main": "build/app.js",
"scripts": {
"lint": "eslint . --ext .ts",
"build": "eslint . --ext .ts && tsc",
"start": "node build/app.js",
"listCals": "node build/listCals.js",
"dev": "concurrently -k -c #3178c6,#4b32c3 -n tsc,eslint yarn:dev:tsc yarn:dev:esl",
"dev:tsc": "tsc -w",
"dev:esl": "esw -w . --ext .ts",
"healthcheck": "node build/healthcheck.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DerLev/notion-gcal-sync.git"
},
"author": "DerLev",
"license": "MIT",
"bugs": {
"url": "https://github.com/DerLev/notion-gcal-sync/issues"
},
"homepage": "https://github.com/DerLev/notion-gcal-sync#readme",
"dependencies": {
"@notionhq/client": "^1.0.4",
"chalk": "^4.1.2",
"dotenv": "^16.0.1",
"figlet": "^1.5.2",
"googleapis": "^100.0.0",
"joi": "^17.6.0",
"nanospinner": "^1.1.0"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.2",
"@types/figlet": "^1.5.4",
"@types/node": "^17.0.39",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"concurrently": "^7.2.1",
"eslint": "^8.17.0",
"eslint-watch": "^8.0.0",
"typescript": "^4.7.3"
}
}