-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.73 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
{
"name": "noland_schat-client-react",
"private": true,
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint --silent"
},
"dependencies": {
},
"devDependencies": {
"babel-preset-meteor": "6.12.0",
"babel-eslint": "6.1.2",
"eslint": "3.5.0",
"eslint-config-airbnb": "11.1.0",
"eslint-config-airbnb-base": "7.1.0",
"eslint-import-resolver-meteor": "0.3.3",
"eslint-plugin-import": "1.15.0",
"eslint-plugin-jsx-a11y": "2.2.2",
"eslint-plugin-meteor": "4.0.0",
"eslint-plugin-react": "6.2.2",
"babel-plugin-transform-class-properties": "^6.11.5"
},
"eslintConfig": {
"parser": "babel-eslint",
"parserOptions": {
"allowImportExportEverywhere": true
},
"plugins": [
"meteor"
],
"extends": [
"airbnb",
"plugin:meteor/recommended"
],
"settings": {
"import/resolver": "meteor",
"import/core-modules": [
"meteor/meteor"
]
},
"rules": {
"no-console": "off",
"import/no-extraneous-dependencies": "off",
"import/no-unresolved": "off",
"max-len": "off",
"prefer-template": "off",
"react/forbid-prop-types": "off",
"react/prefer-stateless-function": "off",
"no-useless-constructor": "off",
"class-methods-use-this": "off",
"arrow-body-style": "off",
"no-return-assign": "off",
"quote-props": "off",
"strict": "off",
"react/no-danger": "off",
"react/sort-comp": "off",
"jsx-a11y/no-static-element-interactions": "off",
"no-underscore-dangle": "off"
},
"globals": {
"$": true,
"fbq": true,
"Assets": true,
"_": true
},
"env": {
"browser": true,
"node": true
}
}
}