forked from dailydotdev/daily-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.56 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.56 KB
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
{
"name": "devkit-api",
"main": "index.js",
"author": "Ido Shamun <ido@elegantmonkeys.com>",
"private": true,
"engines": {
"node": "~10.12.0"
},
"scripts": {
"mocha": "NODE_ENV=test mocha",
"lint": "eslint . --ext .js",
"test": "yarn run lint && yarn run mocha",
"build": "babel . -d build --source-maps --ignore build,node_modules,test && cp package.json yarn.lock ./build && cp -r seeds/data ./build/seeds",
"babel-node": "babel-node",
"watch": "nodemon --exec yarn run babel-node -- $npm_package_main | pino",
"start": "node $npm_package_main",
"deploy": "yarn build && cd build && gcloud --project devkit-prod app deploy app.yaml --no-promote && cd ..",
"cron": "gcloud --project devkit-prod app deploy cron.yaml",
"encrypt:prod": "gcloud --project daily-ops kms encrypt --plaintext-file=./helm/values/prod.yaml --ciphertext-file=./helm/values/prod.yaml.enc --location=global --keyring=daily-ci --key=daily-api-ci"
},
"husky": {
"hooks": {
"pre-commit": "yarn encrypt:prod && git add helm/values/prod.yaml.enc"
}
},
"dependencies": {
"@google-cloud/pubsub": "^0.19.0",
"@google-cloud/trace-agent": "^3.6.1",
"@koa/cors": "2",
"@slack/client": "^4.3.1",
"apollo-server-koa": "^2.9.1",
"busboy": "^0.3.1",
"bytes": "^3.1.0",
"cloudinary": "^1.14.0",
"compressible": "^2.0.16",
"graphql": "^14.5.4",
"graphql-tools": "^4.0.5",
"iltorb": "^2.4.2",
"knex": "^0.15.2",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-context-validator": "^0.4.1",
"koa-etag": "^3.0.0",
"koa-graphql": "^0.8.0",
"koa-is-json": "^1.0.0",
"koa-pino-logger": "^2.1.1",
"koa-router": "^7.2.1",
"lodash": "^4.17.13",
"merge-graphql-schemas": "^1.7.0",
"mysql": "^2.15.0",
"pino": "^4.7.3",
"request": "^2.88.0",
"request-promise-native": "^1.0.5",
"statuses": "^1.5.0",
"stream": "^0.0.2",
"twitter": "^1.7.1",
"uuid": "^3.1.0",
"zlib": "^1.0.5"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint": "^4.18.2",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-chai-friendly": "^0.4.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-mocha": "^4.11.0",
"husky": "^1.0.0-rc.14",
"knex-cleaner": "^1.1.4",
"mocha": "^4.0.1",
"mocha-junit-reporter": "^1.23.0",
"nock": "^9.4.2",
"nodemon": "^1.12.1",
"sinon": "^4.0.1",
"sinon-chai": "^2.14.0",
"supertest": "^3.0.0"
}
}