-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
42 lines (42 loc) · 1.01 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
{
"name": "fruits-api",
"version": "1.0.0",
"description": "API GraphQL de árboles frutales.",
"main": "src/graphql.js",
"engines": {
"node": ">=12.13.1"
},
"scripts": {
"start": "netlify-lambda serve src",
"build": "NODE_OPTIONS='--openssl-legacy-provider' netlify-lambda build src",
"test": "jest"
},
"keywords": [
"API",
"API GraphQL",
"GraphQL",
"Netlify",
"Lambda"
],
"author": "Franco Andrés Sánchez <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Franqsanz/fruits-api.git"
},
"bugs": {
"url": "https://github.com/Franqsanz/fruits-api/issues"
},
"homepage": "https://github.com/Franqsanz/fruits-api#readme",
"dependencies": {
"apollo-server-lambda": "^2.18.2",
"apollo-server-testing": "^2.25.3",
"encoding": "^0.1.13",
"graphql": "^15.3.0",
"graphql-depth-limit": "^1.1.0"
},
"devDependencies": {
"jest": "^27.3.1",
"netlify-lambda": "^2.0.1"
}
}