-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 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
{
"name": "rest-to-api-graphql",
"version": "1.0.0",
"description": "API Graphql F1desde API Rest mediante RestDataSource",
"main": "build/server.js",
"scripts": {
"start": "node build/server.js",
"build": "tsc -p . && ncp src/schema build/schema",
"start:dev": "npm run build:dev",
"build:dev": "nodemon \"src/server.ts\" --exec \"ts-node\" src/server.ts -e ts,graphql,json",
"publish": "npm run build && vercel --prod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jl-olemar/rest-to-api-graphql.git"
},
"keywords": [
"Ergast",
"api-rest-to-graphql",
"graphql",
"rest-data-source"
],
"author": "Jose Olemar <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jl-olemar/rest-to-api-graphql/issues"
},
"homepage": "https://github.com/jl-olemar/rest-to-api-graphql#readme",
"dependencies": {
"apollo-datasource-rest": "^0.13.0",
"apollo-server": "^2.24.1",
"apollo-server-express": "^2.24.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"graphql": "^15.5.0",
"graphql-import": "^1.0.2",
"graphql-import-node": "0.0.4",
"graphql-playground-middleware-express": "^1.7.12",
"graphql-tag-pluck": "^0.8.7",
"graphql-tools": "^7.0.5",
"http": "0.0.1-security",
"lodash": "^4.17.21",
"ncp": "^2.0.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"devDependencies": {
"@types/compression": "1.7.0",
"@types/cors": "^2.8.10",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.11",
"@types/graphql": "^14.5.0",
"@types/lodash": "^4.14.169",
"@types/node": "^15.3.0",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"eslint": "^7.27.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"standard": "^16.0.3",
"typescript-tslint-plugin": "0.5.5"
}
}