-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
98 lines (98 loc) · 2.45 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": "bam-api",
"private": true,
"version": "1.0.0",
"description": "A GraphQL, 'production ready'™ api for internal use at bam, but open sourced as an example !",
"main": "index.js",
"homepage": "https://github.com/bamlab/bam-api",
"keywords": [
"graphql",
"knex",
"postgres",
"docker"
],
"bugs": {
"url": "https://github.com/bamlab/bam-api/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/bamlab/bam-api.git"
},
"author": {
"name": "Tycho Tatitscheff"
},
"contributors": [
{
"name": "Yann Leflour"
}
],
"license": "MIT",
"scripts": {
"dev": "backpack",
"build": "backpack build",
"start:dev": "yarn install && yarn db:migrate && yarn dev",
"start": "yarn db:migrate && node ./build/main.js",
"db:migrate": "knex migrate:latest",
"db:seed": "knex seed:run",
"commitmsg": "validate-commit-msg",
"test:lint": "yarn eslint ."
},
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"@tychot/jwks-rsa": "1.1.2",
"apollo-engine": "^0.4.7",
"backpack-core": "^0.4.0-rc1",
"casual": "^1.5.14",
"config": "^1.25.1",
"dataloader": "^1.3.0",
"deep-assign": "^2.0.0",
"ect": "^0.5.9",
"flow-remove-types": "^1.2.0",
"glob": "^7.1.1",
"graphql": "^0.10.1",
"graphql-apollo-errors": "^2.0.2",
"graphql-server-koa": "^1.0.0",
"graphql-tools": "^1.0.0",
"husky": "^0.14.3",
"js-yaml": "^3.9.0",
"knex": "^0.13.0",
"koa": "^2.3.0",
"koa-bodyparser": "^4.2.0",
"koa-helmet": "^3.1.0",
"koa-jwt": "^3.2.1",
"koa-pino-logger": "2",
"koa-requestid": "^2.0.1",
"koa-router": "^7.2.1",
"koa-views": "^6.0.2",
"koa2-connect": "^1.0.2",
"pg": "^6.4.1",
"pino": "^4.7.0",
"pino-noir": "^1.2.0",
"sqlite3": "^3.1.8",
"uuid": "^3.1.0",
"validate-commit-msg": "^2.12.2"
},
"devDependencies": {
"@tychot/gql": "^2.0.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-preset-env": "^1.6.0",
"babel-preset-flow": "^6.23.0",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^3.19.0",
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-jest": "^20.0.3",
"eslint-plugin-prettier": "^2.1.2",
"flow-bin": "^0.50.0",
"jest": "^20.0.4",
"object-hash": "^1.1.8",
"prettier": "^1.5.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}