forked from SpaceXLand/api
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.19 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
{
"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"
},
"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.10.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"graphql": "^14.6.0",
"graphql-depth-limit": "^1.1.0",
"graphql-rate-limit": "^2.0.1",
"graphql-tag": "^2.10.3",
"graphql-tools": "^4.0.6",
"graphql-validation-complexity": "^0.2.5",
"lodash": "^4.17.15",
"lower-case": "^2.0.1",
"moment": "^2.24.0",
"mongodb": "^3.5.3",
"reflect-metadata": "^0.1.13",
"sofa-api": "0.6.1",
"swagger-ui-express": "^4.1.3",
"ts-node": "^8.6.2",
"type-graphql": "^0.17.6",
"typescript": "^3.7.5"
},
"devDependencies": {
"@graphql-inspector/cli": "1.27.0",
"@types/express": "4.17.2",
"@types/graphql": "^14.5.0",
"@types/node": "^13.7.1",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
"babel-runtime": "6.26.0",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.0.1",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-jest": "23.7.0",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-mongodb": "1.0.0",
"eslint-plugin-react": "7.18.3",
"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": "4.2.3",
"nodemon": "2.0.2"
}
}