-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.85 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "matchmyroute-api",
"description": "MatchMyRoute Backend API",
"version": "0.1.0",
"private": true,
"license": "Commercial",
"author": "GradTeam",
"engines": {
"node": "6.11.1"
},
"config": {
"host": "http://localhost",
"port": "8080",
"with_services": "true"
},
"scripts": {
"build": "gulp build",
"clean": "npm prune && gulp clean",
"debug": "gulp debug --script build/app.js --with_services $npm_package_config_with_services",
"deploy": "gulp build && gcloud app deploy -q build/app.yaml",
"gulp": "gulp",
"lint": "gulp tslint",
"serve": "gulp serve --script build/app.js --with_services $npm_package_config_with_services",
"start": "node app.js",
"test": "gulp test",
"unittest": "gulp unittest",
"e2etest": "gulp e2etest",
"preinstall": "npm update",
"postinstall": "npm prune",
"dbproxy": "./cloud_sql_proxy_linux -instances=matchmyroute-backend:us-east1:matchmyroute-database=tcp:3307 -credential_file=conf/key-file.json",
"dbproxymac": "./cloud_sql_proxy_mac -instances=matchmyroute-backend:us-east1:matchmyroute-database=tcp:3307 -credential_file=conf/key-file.json"
},
"dependencies": {
"@google-cloud/storage": "1.1.1",
"babel-core": "6.24.0",
"cache-manager": "2.2.0",
"cache-manager-memcached-store": "2.1.0",
"data.maybe": "1.2.2",
"es6-promisify": "5.0.0",
"firebase-admin": "5.4.3",
"get-uri": "2.0.0",
"joi": "10.3.1",
"jsonwebtoken": "7.3.0",
"koa": "1.4.0",
"koa-cors": "0.0.16",
"koa-qs": "2.0.0",
"koa-router": "5.4.0",
"koa-static": "2.1.0",
"lodash": "4.17.2",
"moment": "2.18.1",
"node-yaml": "3.0.3",
"pg": "6.1.5",
"qs": "6.4.0",
"ramda": "0.23.0",
"request": "2.79.0",
"request-promise-native": "1.0.4",
"seneca": "3.2.2",
"seneca-web": "2.0.0",
"seneca-web-adapter-koa1": "1.0.3",
"winston": "2.3.0"
},
"devDependencies": {
"@types/joi": "10.0.1",
"@types/koa": "2.0.37",
"@types/lodash": "4.14.59",
"@types/node": "7.0.12",
"@types/request": "0.0.39",
"@types/seneca": "2.1.5",
"@types/winston": "2.3.0",
"chai": "3.5.0",
"chai-as-promised": "6.0.0",
"dredd": "2.2.5",
"firebase": "4.6.0",
"gulp": "3.9.1",
"gulp-clean": "0.3.2",
"gulp-cli": "1.2.2",
"gulp-env": "0.4.0",
"gulp-istanbul": "1.1.1",
"gulp-mocha": "4.2.0",
"gulp-nodemon": "2.2.1",
"gulp-replace": "0.5.4",
"gulp-run": "1.7.1",
"gulp-shell": "0.5.2",
"gulp-sourcemaps": "2.5.0",
"gulp-tslint": "6.1.3",
"gulp-typescript": "3.1.3",
"istanbul": "0.4.5",
"jsonfile": "2.4.0",
"mocha": "3.2.0",
"remap-istanbul": "0.8.4",
"retry-request": "2.0.5",
"run-sequence": "1.2.2",
"should": "11.2.1",
"swagger-ui": "2.2.10",
"tslint": "3.15.1",
"typescript": "2.2.2"
}
}