-
-
Notifications
You must be signed in to change notification settings - Fork 203
/
package.json
81 lines (81 loc) · 2.31 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "mintable",
"author": "Kevin Schaich <[email protected]> (http://kevinschaich.io)",
"license": "MIT",
"version": "2.0.3",
"bin": "./lib/scripts/cli.js",
"preferGlobal": true,
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"lint": "prettier --check ./src/**/*.js ./src/**/*.html ./src/**/*.ts ./docs/**/*.json",
"lint-fix": "prettier --write ./src/**/*.js ./src/**/*.html ./src/**/*.ts ./docs/**/*.json",
"test": "npm run build && npm run lint"
},
"files": [
"src",
"lib",
"docs",
"tsconfig.json"
],
"dependencies": {
"@types/body-parser": "^1.19.0",
"@types/express": "4.17.3",
"@types/express-serve-static-core": "4.17.28",
"@types/glob": "^7.1.2",
"@types/lodash": "4.14.149",
"@types/node": "^14.0.13",
"@types/prompts": "^2.0.3",
"ajv": "^6.12.0",
"body-parser": "^1.19.0",
"chalk": "^3.0.0",
"csv-parse": "^4.10.1",
"csv-stringify": "^5.5.0",
"date-fns": "^2.10.0",
"express": "4.17.3",
"glob": "^7.1.6",
"googleapis": "47.0.0",
"jsonc": "^2.0.0",
"lodash": "4.17.15",
"open": "^7.0.2",
"plaid": "^7.0.0",
"prompts": "^2.3.1",
"typescript": "3.8.3",
"typescript-json-schema": "^0.42.0",
"yargs": "^15.1.0"
},
"devDependencies": {
"prettier": "^1.16.4"
},
"description": "Automate your personal finances – for free, with no ads, and no data collection.",
"repository": {
"type": "git",
"url": "git+https://github.com/kevinschaich/mintable.git"
},
"keywords": [
"finance",
"finance-management",
"personal-finance",
"mint",
"sheets-api",
"google-sheets",
"google-sheets-api",
"plaid",
"plaid-api",
"analytics",
"tracker",
"finance-tracker",
"personal-capital",
"spreadsheet",
"mintable",
"money",
"budget",
"budgeting",
"budget-management",
"javascript"
],
"bugs": {
"url": "https://github.com/kevinschaich/mintable/issues"
},
"homepage": "https://github.com/kevinschaich/mintable#readme"
}