-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
67 lines (67 loc) · 1.92 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
{
"dependencies": {
"@babel/runtime": "^7.4.5",
"babel-runtime": "^6.26.0",
"chai": "^4.2.0",
"classnames": "^2.2.6",
"core-js": "^2.5.2",
"iconv": "^2.3.2",
"meteor-node-stubs": "^0.2.11",
"moment": "^2.23.0",
"react": "^15.6.2",
"react-addons-create-fragment": "^15.6.0",
"react-addons-css-transition-group": "^15.6.0",
"react-addons-linked-state-mixin": "^15.6.0",
"react-addons-perf": "^15.4.2",
"react-addons-pure-render-mixin": "^15.6.0",
"react-addons-test-utils": "^15.6.0",
"react-addons-transition-group": "^15.6.0",
"react-addons-update": "^15.6.0",
"react-bootstrap": "^0.31.5",
"react-dom": "^15.6.2",
"react-select": "^2.4.4"
},
"devDependencies": {
"@meteorjs/eslint-config-meteor": "^1.0.5",
"babel-eslint": "^7.2.3",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^15.0.1",
"eslint-import-resolver-meteor": "^0.4.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^5.0.1",
"eslint-plugin-meteor": "^4.0.1",
"eslint-plugin-react": "^7.1.0"
},
"scripts": {
"lint": "eslint --ext=.js,.jsx .",
"test": "meteor test --once --driver-package meteortesting:mocha",
"pretest": "npm run lint --silent"
},
"eslintConfig": {
"extends": "@meteorjs/eslint-config-meteor",
"rules": {
"react/prefer-stateless-function": "off",
"react/prop-types": "off",
"react/no-multi-comp": "off",
"react/jsx-no-bind": "off",
"jsx-a11y/interactive-supports-focus": "off",
"class-methods-use-this": "off",
"meteor/no-session": "off",
"arrow-body-style": [
"error",
"as-needed",
{
"requireReturnForObjectLiteral": true
}
],
"no-continue": "off",
"no-param-reassign": "off",
"jsx-a11y/label-has-for": "off"
},
"globals": {
"Meteor": false,
"Session": false,
"$": false
}
}
}