-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
61 lines (61 loc) · 1.87 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
{
"name": "commerce-cif-graphql-integration-reference",
"version": "1.0.0",
"description": "Reference implementation showcasing a GraphQL integration on Adobe I/O Runtime with a dummy 3rd-party commerce system",
"author": "Adobe",
"license": "Apache-2.0",
"private": true,
"scripts": {
"lint": "eslint -f table --ignore-path ./.eslintignore .",
"test": "npm run lint && npm run test-cov",
"test-cov": "nyc npm run unit && npm run lcov-report",
"lcov-report": "nyc report --reporter=lcov",
"unit": "mocha test/**/*Test.js --reporter mocha-multi-reporters --reporter-options configFile=mocha-unit.json"
},
"dependencies": {
"@adobe/aio-lib-state": "1.1.2",
"@adobe/aio-sdk": "3.0.0",
"@adobe/exc-app": "0.2.47",
"core-js": "3.20.3",
"dataloader": "1.4.0",
"graphiql": "1.5.16",
"graphql": "14.7.0",
"graphql-tools": "3.1.1",
"prop-types": "15.8.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"regenerator-runtime": "0.13.9"
},
"devDependencies": {
"@openwhisk/wskdebug": "1.3.0",
"axios": "^0.27.2",
"chai": "4.3.5",
"chalk": "^4.1.2",
"eslint": "7.32.0",
"eslint-plugin-header": "3.1.1",
"eslint-plugin-react": "7.28.0",
"git-clone": "0.2.0",
"inquirer": "^8.2.0",
"mocha": "8.4.0",
"mocha-junit-reporter": "1.23.3",
"mocha-multi-reporters": "1.5.1",
"mock-require": "3.0.3",
"nyc": "15.1.0",
"sinon": "7.5.0"
},
"nyc": {
"include": [
"actions/**"
],
"exclude": [
"actions/resources"
],
"check-coverage": true,
"per-file": false,
"lines": 80,
"all": true
},
"engines": {
"node": "^10 || ^12 || ^14"
}
}