-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
26 lines (26 loc) · 894 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
{
"name": "productive-time-entries-importer",
"description": "Import time entries into productive",
"version": "1.0.0",
"scripts": {
"start": "npm run compile && npm run convert && npm run import",
"format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"convert": "npm run convert:csv && npm run convert:json",
"convert:csv": "java -jar tabula-1.0.5-jar-with-dependencies.jar --lattice -format CSV --batch time-entries",
"convert:json": "ts-node build/csvtojson",
"import": "ts-node build/importTimeEntries.js"
},
"devDependencies": {
"@types/luxon": "^3.3.0",
"@types/node": "^20.3.3",
"axios": "^1.4.0",
"csvtojson": "^2.0.10",
"dotenv": "^16.3.1",
"luxon": "^3.3.0",
"prettier": "^3.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"author": "[email protected]",
"license": "UNLICENSED"
}