forked from arthurnobrega/ynab-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.71 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
{
"name": "ynab-sync",
"version": "3.1.1",
"description": "Sync YNAB with Brazilian banks transactions",
"main": "index.js",
"author": "Arthur Nobrega",
"license": "MIT",
"scripts": {
"prepublish": "yarn run build",
"build": "babel src -d dist --ignore **/*.test.js,**/__mocks__",
"start": "yarn build && node dist/index.js",
"test": "jest",
"lint": "eslint ./src"
},
"engines": {
"node": "^10.15.3",
"npm": "6.4.1"
},
"jest": {
"verbose": true,
"testURL": "http://localhost/",
"testPathIgnorePatterns": [
"node_modules",
"dist"
]
},
"dependencies": {
"bb-api": "^2.3.4",
"chalk": "^2.4.1",
"date-fns": "^1.30.1",
"inquirer": "^6.2.1",
"lowdb": "^1.0.0",
"md5": "^2.2.1",
"nubank": "git+https://github.com/arthurnobrega/nubank-api.git#ynab-sync",
"numeral": "^2.0.6",
"yargs": "^12.0.5",
"ynab": "~1.9.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"eslint": "^5.11.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.1.2",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.1",
"jest": "^23.6.0",
"prettier": "^1.15.3",
"regenerator-runtime": "^0.13.1"
},
"resolutions": {
"@babel/runtime": "7.0.0-beta.54"
}
}