-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
76 lines (76 loc) · 2.03 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
{
"name": "spacex-graphql-api",
"version": "1.0.0",
"description": "Open Source GraphQL API for rocket, core, capsule, pad, and launch data",
"main": "./src/index.ts",
"scripts": {
"start": "ts-node ./src/index.ts",
"dev": "nodemon",
"generate": "gql-gen"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spacexland/api"
},
"keywords": [
"graphql",
"typescript",
"spacex",
"mongodb"
],
"author": "Carlos Rufo",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/spacexland/api/issues"
},
"homepage": "https://github.com/spacexland/api",
"graphql-inspector": {
"diff": true,
"schema": {
"ref": "master",
"path": "schema.graphql"
}
},
"dependencies": {
"apollo-link-http": "^1.5.16",
"apollo-server-express": "^2.3.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.16.4",
"express-graphql": "^0.9.0",
"graphql": "^14.0.2",
"graphql-depth-limit": "^1.1.0",
"graphql-rate-limit": "^1.2.2",
"graphql-tag": "^2.10.0",
"graphql-tools": "^4.0.5",
"graphql-validation-complexity": "^0.3.0",
"lodash": "^4.17.19",
"lower-case": "^1.1.4",
"moment": "^2.23.0",
"mongodb": "^3.1.10",
"node-fetch": "^2.6.0",
"sofa-api": "0.7.0",
"swagger-ui-express": "^4.0.2",
"ts-node": "^8.0.0",
"typescript": "^3.2.1"
},
"devDependencies": {
"@graphql-inspector/cli": "1.30.4",
"@types/express": "4.17.6",
"babel-runtime": "6.26.0",
"eslint": "5.16.0",
"eslint-config-airbnb": "17.1.1",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-jest": "22.21.0",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-mongodb": "1.0.0",
"eslint-plugin-react": "7.19.0",
"eslint-plugin-security": "1.4.0",
"graphql-code-generator": "0.18.2",
"graphql-codegen-typescript-common": "0.18.2",
"graphql-codegen-typescript-resolvers": "0.18.2",
"graphql-codegen-typescript-server": "0.18.2",
"husky": "2.7.0",
"nodemon": "1.19.4"
}
}