-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 910 Bytes
/
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
{
"name": "its-to-todoist",
"version": "0.2.0",
"description": "Import ITS tasks to Todoist",
"main": "index.js",
"licenses": [],
"scripts": {
"start": "tsc && node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"docker:build": "source .env && npm run build && docker build -t ${DOCKER_URL}:$npm_package_version .",
"docker:push": "source .env && docker push ${DOCKER_URL}:$npm_package_version"
},
"author": "Daniel Kappelle <daniel.kappelle@gmail.com>",
"license": "MIT",
"dependencies": {
"@doist/todoist-api-typescript": "^3.0.1",
"dotenv": "^16.3.1",
"node-cron": "^3.0.3",
"node-html-parser": "^6.1.11",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/node": "^20.10.5",
"@types/node-cron": "^3.0.11",
"prettier": "^3.1.1",
"type-fest": "^4.8.3",
"typescript": "^5.3.3"
}
}