-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.32 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
{
"name": "data-toulouse-grapql",
"version": "1.0.0",
"description": "GraphQL Support for the Toulouse Métropole Open Data service",
"main": "index.js",
"scripts": {
"start": "ts-node index.ts",
"dev": "nodemon --config nodemon.json",
"test": "echo \"Error: no test specified\" && exit 1",
"gen-types": "gql-gen --config gql-gen.yml"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Moumouls/data-toulouse-grapql.git"
},
"keywords": [
"graphql",
"toulouse",
"data",
"open",
"server"
],
"author": "Antoine Cormouls (@Moumouls)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Moumouls/data-toulouse-grapql/issues"
},
"homepage": "https://github.com/Moumouls/data-toulouse-grapql#readme",
"dependencies": {
"@types/graphql": "^14.0.5",
"@types/request-promise": "^4.1.42",
"graphql": "^14.1.1",
"graphql-yoga": "^1.17.0",
"merge-graphql-schemas": "^1.5.8",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"ts-node": "^7.0.1",
"typescript": "^3.2.4"
},
"devDependencies": {
"graphql-code-generator": "^0.16.0",
"graphql-codegen-typescript-common": "^0.16.0",
"graphql-codegen-typescript-resolvers": "^0.16.0",
"graphql-codegen-typescript-server": "^0.16.0",
"nodemon": "^1.18.9"
}
}