forked from britishcouncil/grizzly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.41 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
{
"name": "@britishcouncil/grizzly",
"version": "0.3.3",
"description": "Slightly opinionated GraphQL server solution.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"repository": "[email protected]:britishcouncil/grizzly.git",
"author": "Vincenzo Russo",
"license": "MIT",
"private": false,
"scripts": {
"prepublish": "yarn build",
"build": "rm -rf dist && tsc -d",
"lint": "tslint --project tsconfig.json {src,test}/**/*.ts && prettier-check --ignore-path .gitignore {src,.}/{*.ts,*.js}",
"format": "prettier --write --ignore-path .gitignore {src,.}/{*.ts,*.js}"
},
"release": {
"branch": "master"
},
"ava": {
"files": [
"dist/**/*.test.js"
]
},
"dependencies": {
"apollo-errors": "^1.9.0",
"apollo-server-express": "^2.2.4",
"express": "^4.16.4",
"express-session": "^1.15.6",
"graphql-import": "^0.7.1",
"graphql-middleware": "^2.0.2",
"graphql-shield": "^4.1.0",
"passport": "^0.4.0",
"postgraphile": "^4.0.1"
},
"devDependencies": {
"@types/express-session": "^1.15.10",
"@types/passport": "^0.4.6",
"ava": "^0.25.0",
"prettier": "^1.14.2",
"prettier-check": "^2.0.0",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-config-standard": "^8.0.0",
"typescript": "^3.0.3"
},
"peerDependencies": {
"graphql": "^0.13.0 || ^14.0.0"
}
}