This repository has been archived by the owner on Sep 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
124 lines (124 loc) · 3.88 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "@reactioncommerce/api-core",
"version": "0.0.0-development",
"description": "This NPM package provides the `ReactionAPICore` class. Use this to build a NodeJS microservice that is compatible with the Reaction Commerce platform, or to build your main Reaction Commerce API if you don't want to start by forking the `https://github.com/reactioncommerce/reaction` project.",
"main": "./src/index.js",
"type": "module",
"sideEffects": false,
"engines": {
"node": ">=12.14.1"
},
"homepage": "https://github.com/reactioncommerce/api-core",
"url": "https://github.com/reactioncommerce/api-core",
"email": "[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/reactioncommerce/api-core.git"
},
"author": "Reaction Commerce <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/reactioncommerce/api-core/issues"
},
"scripts": {
"test": "npm run test:unit",
"test:unit": "jest --maxWorkers=4",
"test:unit:watch": "jest --maxWorkers=4 --watch",
"test:unit:file": "jest --no-cache --maxWorkers=4",
"test:unit:file:watch": "jest --no-cache --maxWorkers=4 --watch",
"lint": "eslint .",
"lint:gql": "graphql-schema-linter ./src/**/*.graphql"
},
"keywords": [],
"graphql-schema-linter": {
"rules": [
"arguments-have-descriptions",
"deprecations-have-a-reason",
"descriptions-are-capitalized",
"enum-values-have-descriptions",
"enum-values-sorted-alphabetically",
"fields-have-descriptions",
"input-object-fields-sorted-alphabetically",
"input-object-values-have-descriptions",
"relay-connection-types-spec",
"relay-page-info-spec",
"type-fields-sorted-alphabetically",
"types-are-capitalized",
"types-have-descriptions"
]
},
"dependencies": {
"@apollo/federation": "^0.15.0",
"@graphql-tools/merge": "^8.0.1",
"@reactioncommerce/api-utils": "^1.12.0",
"@reactioncommerce/logger": "^1.1.3",
"@reactioncommerce/random": "^1.0.2",
"@reactioncommerce/reaction-error": "^1.0.1",
"apollo-server": "^2.13.0",
"apollo-server-express": "^2.13.0",
"apollo-server-testing": "^2.13.0",
"body-parser": "^1.19.0",
"callsite": "^1.0.0",
"cors": "^2.8.5",
"cuid": "^2.1.8",
"dataloader": "^2.0.0",
"diehard": "^1.5.2",
"envalid": "^6.0.1",
"express": "^4.17.1",
"graphql-iso-date": "^3.6.1",
"lodash": "^4.17.15",
"mongodb": "3.6.2",
"promise-retry": "^1.1.1",
"simpl-schema": "^1.7.0"
},
"devDependencies": {
"@babel/core": "~7.9.0",
"@babel/preset-env": "~7.9.0",
"@commitlint/cli": "~8.3.5",
"@commitlint/config-conventional": "~8.3.4",
"@reactioncommerce/babel-remove-es-create-require": "~1.0.0",
"@reactioncommerce/data-factory": "~1.0.1",
"@reactioncommerce/eslint-config": "~2.1.1",
"babel-eslint": "~10.1.0",
"babel-jest": "~25.2.6",
"babel-plugin-rewire-exports": "~2.1.0",
"babel-plugin-transform-es2015-modules-commonjs": "~6.26.2",
"babel-plugin-transform-import-meta": "~1.0.1",
"eslint": "~6.8.0",
"eslint-plugin-import": "~2.18.2",
"eslint-plugin-jest": "^24.3.5",
"eslint-plugin-jsx-a11y": "~6.2.3",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-promise": "~4.2.1",
"eslint-plugin-react": "~7.14.3",
"eslint-plugin-react-hooks": "~2.0.1",
"graphql": "~14.6.0",
"graphql-schema-linter": "~0.2.5",
"husky": "~4.2.3",
"jest": "~25.2.7"
},
"peerDependencies": {
"graphql": "^14.6.0 || ^15.0.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"prettier": {
"arrowParens": "always"
},
"release": {
"branches": [
"trunk"
]
},
"publishConfig": {
"access": "public"
}
}