-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.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
{
"name": "guide-api",
"version": "0.1.0",
"description": "api.graphql.guide",
"scripts": {
"dev": "nodemon -e js,graphql --exec 'npm run update-graphql-imports && babel-node src/index.js'",
"start": "node dist/index.js",
"build": "babel src -d dist --ignore **/*.test.js",
"update-graphql-imports": "rm -rf ./node_modules/.cache/@babel"
},
"engines": {
"node": ">=8"
},
"dependencies": {
"apollo-datasource-mongodb": "0.2.0",
"apollo-server": "2.9.6",
"apollo-server-testing": "2.9.6",
"date-fns": "2.5.1",
"dotenv": "8.2.0",
"graphql": "14.5.8",
"graphql-request": "1.8.2",
"jsonwebtoken": "8.5.1",
"jwks-rsa": "1.6.0",
"lodash": "4.17.15",
"mongodb": "3.3.3"
},
"devDependencies": {
"@babel/cli": "7.6.4",
"@babel/core": "7.6.4",
"@babel/node": "7.6.3",
"@babel/preset-env": "7.6.3",
"apollo-link": "1.2.13",
"apollo-link-http": "1.5.16",
"babel-plugin-import-graphql": "2.7.0",
"eslint": "6.5.1",
"eslint-plugin-node": "10.0.0",
"husky": "3.0.9",
"jest": "24.9.0",
"node-fetch": "2.6.0",
"nodemon": "1.19.4"
},
"homepage": "https://github.com/GraphQLGuide/guide-api",
"repository": {
"type": "git",
"url": "git+https://github.com/GraphQLGuide/guide-api"
},
"bugs": {
"url": "https://github.com/GraphQLGuide/guide-api/issues"
},
"private": true,
"author": "The GraphQL Guide <[email protected]> (https://graphql.guide)"
}