-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.37 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
53
54
{
"name": "notion-rollover-todos",
"version": "1.0.4",
"author": "Shaun Saker <[email protected]>",
"license": "Apache-2.0",
"main": "dist/main.js",
"scripts": {
"prepare": "husky install",
"dev": "npx vite-node -w ./src/main.ts",
"lint": "npm-run-all --parallel lint:*",
"lint:prettier": "prettier -c \"**/*.{ts,tsx}\"",
"lint:eslint": "eslint --ext [.ts,.tsx] .",
"lint:ts": "tsc",
"test": "jest --coverage",
"test:watch": "jest --watch",
"build": "tsc -p tsconfig.release.json",
"start": "node ./dist/main.js"
},
"engines": {
"node": ">= 18.12 <19"
},
"dependencies": {
"@netlify/functions": "^1.3.0",
"@notionhq/client": "^2.2.3",
"dayjs": "^1.11.7",
"dotenv": "^16.0.3",
"node-fetch": "^3.3.0",
"tslib": "~2.4"
},
"devDependencies": {
"@types/jest": "~29.2",
"@types/node": "~18",
"@typescript-eslint/eslint-plugin": "~5.44",
"@typescript-eslint/parser": "~5.44",
"eslint": "~8.28",
"eslint-config-prettier": "~8.5",
"eslint-plugin-jest": "~27.1",
"husky": "^8.0.0",
"jest": "~29.3",
"lint-staged": "^13.1.0",
"npm-run-all": "^4.1.5",
"prettier": "~2.8",
"ts-jest": "~29.0",
"tsutils": "~3.21",
"typescript": "~4.9"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write",
"eslint --fix",
"git add"
]
}
}