forked from watsuyo/notion-rss-reader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.03 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-rss",
"version": "0.0.1",
"description": "",
"main": "src/index.ts",
"repository": "[email protected]:watsuyo/notion-rss-reader.git",
"author": "watsuyo <[email protected]>",
"private": false,
"license": "MIT",
"type": "module",
"scripts": {
"build": "node build.js",
"feed": "node dist/bundle.cjs",
"lint": "eslint",
"lint:fix": "eslint --fix && npx prettier 'src/**/*.{js,ts,json}' --write",
"lint-staged": "lint-staged",
"prepare": "husky install"
},
"devDependencies": {
"@notionhq/client": "^0.4.13",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"dotenv": "^16.0.0",
"esbuild": "^0.14.20",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.3",
"ogp-parser": "^0.6.0",
"prettier": "^2.5.1",
"rss-parser": "^3.12.0",
"typescript": "^4.5.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
]
}
}