forked from jboothe/apollo-f1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 905 Bytes
/
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
{
"name": "f1-apollo",
"version": "0.0.1",
"description": "An Apollo server wrapping Ergast F1 API",
"main": "./dist/index.js",
"scripts": {
"build": "tsc",
"lint": "tslint src/**/*",
"start": "npm run build && node ./dist/index.js",
"dev": "nodemon ./dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "typings install"
},
"keywords": [
"Apollo-Stack",
"GraphQL",
"F1"
],
"author": "Jeff Boothe",
"license": "ISC",
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^2.5.3",
"nodemon": "^1.9.2",
"tslint": "^3.13.0",
"typescript": "^1.8.10",
"typings": "^1.3.1"
},
"dependencies": {
"apollo-server": "^0.2.4",
"body-parser": "^1.15.2",
"dataloader": "^1.2.0",
"express": "^4.14.0",
"graphql": "^0.6.1",
"graphql-tools": "^0.6.4",
"request": "^2.73.0"
}
}