This repository has been archived by the owner on Dec 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
105 lines (105 loc) · 3.08 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
{
"name": "reaction-identity",
"description": "A server providing identity services for Reaction Commerce using Meteor's Accounts packages",
"version": "3.3.1",
"homepage": "https://github.com/reactioncommerce/reaction-identity",
"url": "https://github.com/reactioncommerce/reaction-identity",
"repository": {
"type": "git",
"url": "https://github.com/reactioncommerce/reaction-identity.git"
},
"author": {
"name": "Reaction Commerce",
"email": "[email protected]",
"url": "https://reactioncommerce.com"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/reactioncommerce/reaction-identity/issues"
},
"scripts": {
"start": "meteor run --port ${PORT:=4100}",
"lint": "eslint .",
"visualize": "meteor --production --extra-packages bundle-visualizer"
},
"dependencies": {
"@apollo/react-hooks": "^3.1.3",
"@babel/runtime": "^7.14.8",
"@material-ui/core": "^4.12.2",
"@reactioncommerce/components": "^0.69.0",
"@reactioncommerce/components-context": "^1.2.0",
"@reactioncommerce/logger": "^1.1.3",
"@reactioncommerce/random": "^1.0.2",
"apollo-cache-inmemory": "^1.6.5",
"apollo-client": "^2.6.8",
"apollo-link-http": "^1.5.16",
"bcrypt": "^5.0.0",
"classnames": "^2.2.6",
"envalid": "^6.0.0",
"graphql": "^14.5.8",
"graphql-tag": "^2.10.1",
"i18next": "^19.9.2",
"i18next-browser-languagedetector": "^4.0.1",
"i18next-fetch-backend": "^2.2.0",
"i18next-multiload-backend-adapter": "^0.1.1",
"lodash": "^4.17.21",
"meteor-node-stubs": "^1.0.0",
"mongodb": "3.5.7",
"node-fetch": "^2.6.1",
"prop-types": "^15.7.2",
"query-string": "^6.14.1",
"react": "^16.12.0",
"react-apollo": "^3.1.3",
"react-dom": "^16.12.0",
"react-i18next": "^11.11.4",
"react-router-dom": "^5.1.2",
"react-stripe-elements": "^5.0.1",
"reacto-form": "^1.4.0",
"simpl-schema": "^1.5.6",
"styled-components": "^4.4.1"
},
"meteor": {
"mainModule": {
"client": "client/main.js",
"server": "server/main.js"
}
},
"devDependencies": {
"@reactioncommerce/eslint-config": "^2.1.0",
"babel-eslint": "^10.0.3",
"eslint": "^6.5.1",
"eslint-import-resolver-meteor": "^0.4.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.1.2"
},
"browserslist": [
"last 2 versions",
"> 1%",
"IE 11"
],
"eslintConfig": {
"extends": "@reactioncommerce",
"settings": {
"import/resolver": "meteor",
"react": {
"version": "detect"
}
},
"globals": {
"Package": true
},
"rules": {
"jsx-a11y/label-has-for": "off",
"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"
}
}
}