generated from SAP/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
49 lines (49 loc) · 1.14 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
{
"name": "@cap-js/graphql",
"version": "0.12.0",
"description": "CDS protocol adapter for GraphQL",
"keywords": [
"CAP",
"CDS",
"GraphQL"
],
"author": "SAP SE (https://www.sap.com)",
"license": "SEE LICENSE IN LICENSE",
"repository": "cap-js/graphql",
"homepage": "https://cap.cloud.sap/",
"main": "index.js",
"files": [
"app/",
"lib/",
"index.js",
"cds-plugin.js",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"engines": {
"node": ">=16"
},
"scripts": {
"prettier": "npm_config_yes=true npx prettier@latest --write app lib test",
"prettier:check": "npm_config_yes=true npx prettier@latest --check app lib test",
"lint": "npm_config_yes=true npx eslint@latest .",
"test": "jest --silent",
"test:generate-schemas": "node ./test/scripts/generate-schemas.js"
},
"dependencies": {
"graphql": "^16",
"graphql-http": "^1.18.0"
},
"peerDependencies": {
"@sap/cds": ">=7.8"
},
"devDependencies": {
"@cap-js/graphql": "file:.",
"@cap-js/sqlite": "^1",
"axios": "^1",
"express": "^4.17.1",
"jest": "^29.3.1",
"semver": "^7.4.0"
}
}