-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.22 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
{
"name": "npdev-meteor-react-state",
"scripts": {
"test": "meteor test-packages ./"
},
"dependencies": {
"react": "16.9.0",
"react-dom": "16.9.0",
"react-test-renderer": "16.9.0",
"@testing-library/react-hooks": "1.1.0"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^6.2.2",
"eslint-config-standard": "^14.1.0",
"eslint-config-standard-jsx": "^8.1.0",
"eslint-import-resolver-meteor": "^0.4.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-meteor": "^6.0.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.0.1",
"eslint-plugin-standard": "^4.0.1"
},
"eslintConfig": {
"extends": [
"plugin:meteor/recommended",
"standard",
"standard-jsx"
],
"parser": "babel-eslint",
"parserOptions": {
"sourceType": "module",
"allowImportExportEverywhere": true
},
"plugins": [
"react-hooks",
"meteor"
],
"rules": {
"jsx-quotes": 0,
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn"
},
"settings": {
"import/resolver": "meteor"
}
}
}