-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 1.28 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
{
"name": "cheddardog",
"version": "2.2.77",
"description": "fetch transactions from your financial institutions, like bofa and amex, then generate & email summary reports.",
"main": "dist/src/refresh.js",
"scripts": {
"build": "tsc -m commonjs",
"clean": "rm -rf ./dist",
"clean-data": "rm -rf ./out",
"clean-node-modules": "rm -rf node_modules",
"clean-all": "npm run clean && npm run clean-data && npm run clean-node-modules",
"refresh": "node dist/src/refresh.js",
"send": "node dist/src/send.js",
"html": "CHEDDARDOG_SAVEONLY=1 node dist/src/send.js"
},
"types": "dist/src/index.d.ts",
"author": "Sam Khavari <skhavari@cs.stanford.edu>",
"license": "UNLICENSED",
"dependencies": {
"@sendgrid/mail": "^6.4.0",
"@types/csvtojson": "1.1.5",
"@types/html-minifier": "^3.5.3",
"@types/node": "^12.12.21",
"@types/node-sass": "^4.11.0",
"@types/ora": "^3.2.0",
"@types/puppeteer": "^2.0.0",
"@types/shelljs": "^0.8.6",
"csvtojson": "2.0.10",
"html-minifier": "^4.0.0",
"node-sass": "^4.13.0",
"ora": "^4.0.3",
"puppeteer": "^2.0.0",
"shelljs": "0.8.3",
"typescript": "^3.7.3"
}
}