-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.55 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
{
"name": "npdev-react-loadable",
"repository": {
"type": "git",
"url": "git+https://github.com/CaptainN/npdev-react-loadable.git"
},
"author": "James Kyle & Kevin Newman",
"license": "MIT",
"scripts": {
"test": "meteor test-packages ./",
"publish": "rm -rf node_modules && meteor publish"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-jsx": "^8.1.0",
"eslint-import-resolver-meteor": "^0.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-meteor": "^7.2.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.4",
"eslint-plugin-react-hooks": "^4.1.2",
"eslint-plugin-standard": "^4.0.1",
"npdev-react-loadable-babel": "file:babel",
"pretty-format": "^26.5.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-test-renderer": "^16.14.0"
},
"browserslist": [
"> 1%",
"Android >= 4.4",
"IE >= 10",
"Firefox ESR"
],
"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"
}
}
}