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 24
/
package.json
95 lines (95 loc) · 2.58 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
{
"name": "@reactioncommerce/api-plugin-authentication",
"description": "Authentication plugin for the Reaction API",
"version": "2.2.4",
"main": "index.js",
"type": "module",
"engines": {
"node": ">=12.14.1"
},
"homepage": "https://github.com/reactioncommerce/api-plugin-authentication",
"url": "https://github.com/reactioncommerce/api-plugin-authentication",
"email": "[email protected]",
"repository": {
"type": "git",
"url": "git+https://github.com/reactioncommerce/api-plugin-authentication.git"
},
"author": {
"name": "Mailchimp Open Commerce",
"email": "[email protected]",
"url": "https://mailchimp.com/developer/open-commerce/"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/reactioncommerce/api-plugin-authentication/issues"
},
"sideEffects": false,
"dependencies": {
"@accounts/graphql-api": "^0.33.0",
"@accounts/magic-link": "^0.1.1",
"@accounts/mongo": "^0.33.0",
"@accounts/password": "^0.32.0",
"@accounts/server": "^0.33.0",
"@graphql-modules/core": "^0.7.17",
"@reactioncommerce/api-utils": "^1.14.2",
"@reactioncommerce/logger": "^1.1.3",
"@reactioncommerce/reaction-error": "^1.0.1",
"envalid": "^6.0.2",
"jwt-decode": "^3.1.2",
"mongoose": "^6.0.4",
"node-fetch": "^2.6.0",
"simpl-schema": "^1.5.7"
},
"devDependencies": {
"@reactioncommerce/eslint-config": "~2.1.0",
"babel-eslint": "^10.0.3",
"eslint": "^6.4.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.7.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.0.1",
"semantic-release": "^17.0.4"
},
"resolutions": {
"lodash": "4.17.21"
},
"scripts": {
"lint": "npm run lint:eslint",
"lint:eslint": "eslint ."
},
"eslintConfig": {
"extends": "@reactioncommerce",
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module",
"ecmaFeatures": {
"impliedStrict": true
}
},
"env": {
"es6": true,
"jasmine": true
},
"rules": {
"node/no-missing-import": "off",
"node/no-missing-require": "off",
"node/no-unsupported-features/es-syntax": "off",
"node/no-unpublished-import": "off",
"node/no-unpublished-require": "off"
}
},
"prettier": {
"arrowParens": "always"
},
"release": {
"branches": [
"trunk"
]
},
"publishConfig": {
"access": "public"
}
}