-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.26 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
{
"name": "notion-scheduler",
"version": "0.1.0",
"description": "Allows the creation of recurring tasks in Notion.",
"main": "build/index.js",
"repository": "https://github.com/kontheocharis/notion-scheduler",
"author": "Constantine Theocharis <[email protected]>",
"license": "MIT",
"private": false,
"devDependencies": {
"@types/lodash": "^4.14.174",
"@types/node": "^16.9.6",
"@types/yargs": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.4.1",
"prettier-plugin-jsdoc": "^0.3.24",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"scripts": {
"build": "tsc",
"clean": "rm -rf ./build",
"watch": "tsc -w",
"fmt": "prettier -w './src/**/*.ts'",
"lint": "eslint src/",
"tcheck": "tsc --noEmit",
"dev:build": "tsc-watch --noClear",
"dev": "tsc-watch --noClear --onSuccess \"yarn start\""
},
"dependencies": {
"@notionhq/client": "^0.3.2",
"date-fns": "^2.24.0",
"date-fns-tz": "^1.1.6",
"lodash": "^4.17.21",
"rrule": "^2.6.8",
"winston": "^3.3.3",
"yaml": "^1.10.2",
"yargs": "^17.2.0",
"zod": "^3.8.2"
},
"bin": "./run.js"
}