-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.5 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
{
"name": "todoist-auto-reschedule",
"version": "1.0.0",
"description": "Auto rescheduler for overdue tasks in todoist",
"license": "MIT",
"author": "Daren Malfait <[email protected]>",
"type": "module",
"scripts": {
"test": "jest",
"start": "node --loader ts-node/esm --experimental-specifier-resolution=node src/reschedule.ts",
"checks": "npm test && run-p format lint typecheck",
"checks:fix": "run-s format:fix lint:fix",
"format": "prettier . --check --cache --cache-location=\"node_modules/.cache/prettiercache\"",
"format:fix": "prettier . --write --cache --cache-location=\"node_modules/.cache/prettiercache\" --log-level=warn",
"lint:fix": "eslint . --fix --cache --cache-location \"node_modules/.cache/.eslintcache\" --max-warnings 0",
"lint": "eslint . --max-warnings 0",
"clean": "rm -rf node_modules",
"prepare": "husky",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@doist/todoist-api-typescript": "^3.0.3",
"dotenv": "^16.4.7",
"tiny-invariant": "^1.3.3",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@nerdfish/config": "^1.8.0",
"@types/jest": "^29.5.14",
"eslint": "^9.18.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"npm-run-all2": "^7.0.2",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.10",
"typescript": "^5.7.3"
},
"packageManager": "[email protected]"
}