-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.12 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
{
"name": "monzo-budgeter",
"version": "0.0.1",
"description": "Budget helper application for Monzo",
"repository": {
"type": "git",
"url": "https://github.com/roketworks/Monzo-Web-Client.git"
},
"engines": {
"node": ">=6.0.0 <6.11.1"
},
"scripts": {
"build": "gulp build",
"build-babel": "./node_modules/.bin/babel src -d dist --source-maps",
"migratedb": "node_modules/.bin/sequelize db:migrate",
"seeddb": "node_modules/.bin/sequelize db:seed:all",
"initdb": "npm run -s migratedb && npm run -s seeddb",
"run": "node dist/server.js",
"start": "npm run -s initdb & npm run -s run"
},
"author": "Mike McFarland",
"license": "ISC",
"dependencies": {
"accounting": "^0.4.1",
"bluebird": "^3.4.7",
"body-parser": "^1.16.0",
"connect-redis": "^3.2.0",
"dotenv": "^4.0.0",
"express": "^4.14.1",
"express-session": "^1.15.1",
"helmet": "^3.4.0",
"json2csv": "^3.7.3",
"moment": "^2.17.1",
"monzo-api": "^1.0.8",
"morgan": "^1.8.0",
"pg": "^6.1.2",
"pg-hstore": "^2.3.2",
"promise": "^7.1.1",
"pug": "^2.0.0-beta11",
"pug-bootstrap": "0.0.11",
"redis": "^2.6.5",
"sequelize": "^3.30.2",
"sequelize-cli": "^2.5.1",
"session-file-store": "^1.0.0",
"simple-oauth2": "^1.0.3",
"superagent": "^3.4.3"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-preset-env": "^1.1.8",
"babel-preset-es2015": "^6.22.0",
"babel-preset-latest": "^6.22.0",
"babel-register": "^6.23.0",
"browser-sync": "^2.18.8",
"chai": "^3.5.0",
"del": "^2.2.2",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-browserify": "^0.5.1",
"gulp-if": "^2.0.2",
"gulp-jshint": "^2.0.4",
"gulp-mocha": "^3.0.1",
"gulp-pug": "^3.2.0",
"gulp-relative-sourcemaps-source": "^0.1.5",
"gulp-replace": "^0.5.4",
"gulp-sass": "^3.1.0",
"gulp-sourcemaps": "^2.4.1",
"gulp-watch": "^4.3.11",
"gulp-watch-pug": "^1.0.0",
"jshint": "^2.9.4",
"mocha": "^3.2.0",
"sinon": "^1.17.7",
"umzug": "^1.11.0",
"vinyl-source-stream": "^1.1.0",
"yargs": "^6.6.0"
}
}