-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.18 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
{
"name": "employees",
"private": true,
"version": "0.0.1",
"scripts": {
"start": "meteor run",
"lint": "eslint ."
},
"dependencies": {
"babel-runtime": "^6.20.0",
"eslint": "^3.18.0",
"faker": "^4.1.0",
"lodash": "^4.17.4",
"meteor-node-stubs": "~0.2.4",
"react": "^15.4.2",
"react-addons-pure-render-mixin": "^15.4.2",
"react-dom": "^15.4.2"
},
"devDependencies": {
"babel-eslint": "^7.2.1",
"eslint": "^3.18.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-import-resolver-meteor": "^0.3.4",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-meteor": "^4.0.1",
"eslint-plugin-react": "^6.10.3"
},
"eslintConfig": {
"parser": "babel-eslint",
"parserOptions": {
"allowImportExportEverywhere": true
},
"plugins": [
"meteor"
],
"extends": [
"airbnb",
"plugin:meteor/recommended"
],
"settings": {
"import/resolver": "meteor"
},
"rules": {
"linebreak-style": "off",
"indent": "off",
"react/jsx-indent": "off",
"react/jsx-filename-extension": "off",
"arrow-body-style": 0
}
}
}