-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.04 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.04 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
{
"name": "notionscripts",
"version": "1.0.0",
"description": "Some scripts to manage my Tasks database in Notion",
"main": "index.js",
"type": "module",
"scripts": {
"lint": "eslint . --ext .ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/liamhughes/NotionScripts.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/liamhughes/NotionScripts/issues"
},
"homepage": "https://github.com/liamhughes/NotionScripts#readme",
"dependencies": {
"@notionhq/client": "^0.1.6",
"chalk": "^4.1.1",
"dotenv": "^10.0.0",
"lodash.replace": "^4.1.4",
"objects-to-csv": "^1.3.6",
"open": "^8.2.0",
"prompt": "^1.1.0"
},
"devDependencies": {
"@types/lodash.replace": "^4.1.6",
"@types/objects-to-csv": "^1.3.1",
"@types/prompt": "^1.1.0",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"eslint": "^7.27.0",
"typescript": "^4.2.4"
}
}