-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
75 lines (75 loc) · 1.94 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
72
73
74
75
{
"name": "spot-share",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "meteor run"
},
"dependencies": {
"babel-runtime": "^6.18.0",
"bcrypt": "^1.0.2",
"material-ui": "^0.16.7",
"meteor-node-stubs": "~0.2.3",
"react": "^15.4.2",
"react-addons-pure-render-mixin": "^15.4.2",
"react-dom": "^15.4.2",
"react-google-maps": "^6.0.1",
"react-meteor-data": "^0.2.10",
"react-places-autocomplete": "^3.0.0",
"react-redux": "^5.0.2",
"react-router": "^3.0.2",
"react-tap-event-plugin": "^2.0.1",
"redux": "^3.6.0",
"redux-devtools-extension": "^2.13.0",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.16.0",
"babel-eslint": "6.1.2",
"babel-plugin-lodash": "^3.2.9",
"babel-plugin-transform-flow-comments": "^6.8.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-plugin-typecheck": "^3.9.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"eslint": "^3.15.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-react": "^6.9.0"
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "airbnb",
"env": {
"browser": true,
"node": true
},
"plugins": [
"import",
"react",
"jsx-a11y"
],
"rules": {
"max-len": 0,
"global-require": 0,
"no-case-declarations": 0,
"no-param-reassign": 1,
"react/prefer-stateless-function": 0,
"react/jsx-no-bind": 0
},
"settings": {
"import/resolver": "meteor",
"import/core-modules": [
"meteor/meteor",
"meteor/react-meteor-data",
"meteor/accounts-base",
"meteor/mongo"
],
"import/no-extraneous-dependencies": "off"
}
}
}