-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.36 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
{
"name": "monizze-to-ynab",
"version": "0.0.1",
"description": "Converts Monizze transactions JSON to YNAB import format",
"main": "dist/index.js",
"repository": "[email protected]:thomastoye/monizze-to-ynab.git",
"author": "Thomas Toye <[email protected]>",
"license": "MIT",
"scripts": {
"build": "yarn run tsc",
"create-deployment-dir": "yarn build && rm -rf deploy && mkdir deploy && cp -r dist/ package.json yarn.lock deploy/",
"deploy": "yarn create-deployment-dir && cd terraform && terraform apply",
"test": "yarn jest",
"start": "./src/run.ts"
},
"devDependencies": {
"@google-cloud/functions-framework": "^1.7.1",
"@types/express": "^4.17.9",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.20",
"@types/puppeteer": "^5.4.2",
"husky": "^4.3.7",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"csv-writer": "^1.6.0",
"date-fns": "^2.16.1",
"date-fns-tz": "^1.0.12",
"dotenv": "^8.2.0",
"got": "^11.8.1",
"p-retry": "^4.2.0",
"puppeteer": "^5.5.0",
"yargs": "^16.2.0",
"ynab": "^1.21.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && cd terraform && terraform fmt"
}
},
"lint-staged": {
"*.ts": "prettier --write"
}
}