-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.53 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
{
"name": "csvstore",
"version": "1.0.0",
"description": "Tool to store csvs from banks and convert them to other formats (currently only Bank Austria as input supported and YNAB as output supported)",
"main": "index.js",
"scripts": {
"start": "node dist/server.js --env prod",
"watch": "nodemon --watch dist -e js,css,html,gz --exec 'node dist/server.js'",
"devbuild": "gulp dev",
"build": "gulp",
"test": "echo \"Error: no test specified\" && exit 1",
"//test": "npm run build; mocha --require 'babel-polyfill' --compilers js:babel-register"
},
"author": "Christian Sterzl <christian.sterzl@gmail.com>",
"repository": "github:waxolunist/bankimporter",
"license": "ISC",
"dependencies": {
"datauri": "^1.1.0",
"db-migrate": "^0.11.1",
"db-migrate-sqlite3": "^0.4.0",
"fsevents": "^2.0.7",
"memorystream": "^0.3.1",
"mime-types": "^2.1.18",
"moment": "^2.21.0",
"moment-timezone": "^0.5.14",
"numeral": "^2.0.6",
"object-hash": "^1.3.0",
"puppeteer": "^1.19.0",
"sha1": "^1.1.1",
"sqlite": "^3.0.3",
"sqlite3": "^4.2.0",
"squel": "^5.12.0",
"stream": "0.0.2",
"stream-buffers": "^3.0.1",
"wait-for-event": "^1.0.0",
"zippy": "0.0.3"
},
"devDependencies": {
"async-busboy": "^0.6.2",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"bulma": "0.6.2",
"crossroads": "^0.12.2",
"del": "^5",
"fast-csv": "^2.4.1",
"font-awesome": "^4.7.0",
"gulp": "^4",
"gulp-babel": "^7.0.1",
"gulp-gzip": "^1.4.2",
"gulp-jade": "^1.1.0",
"gulp-newer": "^1.4.0",
"gulp-sass": "^4.1.1",
"gulp-sourcemaps": "^2.6.5",
"gulp-uglify": "^3.0.0",
"hasher": "^1.2.0",
"jquery": "^3.4.1",
"koa": "^2.5.0",
"koa-bodyparser": "^4.2.0",
"koa-mount": "^3.0.0",
"koa-multer": "^1.0.2",
"koa-router": "^7.4.0",
"koa-static": "^4.0.2",
"lit-html": "^1.1.1",
"merge-stream": "^1.0.1",
"nodemon": "^1.19.0",
"page": "^1.8.4",
"pump": "^3.0.0",
"run-sequence": "^2.2.1",
"signals": "^1.0.0",
"streamifier": "^0.1.1"
},
"volta": {
"node": "10.24.1",
"npm": "6.14.15"
}
}