-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 2.76 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"scripts": {
"start": "meteor",
"pretest": "npm run lint --silent",
"test": "meteor test --once --driver-package dispatch:mocha-phantomjs",
"test-watch": "meteor test --driver-package practicalmeteor:mocha",
"test-app-watch": "meteor test --full-app --driver-package practicalmeteor:mocha",
"lint": "eslint --ext .js,.jsx .",
"chimp-watch": "chimp --ddp=http://localhost:3000 --watch --mocha --path=tests"
},
"dependencies": {
"@babel/runtime": "^7.0.0-beta.44",
"autoprefixer": "^8.3.0",
"bcrypt": "^3.0.6",
"classnames": "^2.2.5",
"faker": "^4.1.0",
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-addons-pure-render-mixin": "^15.6.2",
"react-dom": "^16.8.6",
"react-router-dom": "^4.2.2",
"react-transition-group": "^2.3.1"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-import-resolver-meteor": "^0.4.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-meteor": "^4.2.0",
"eslint-plugin-react": "^7.7.0",
"meteor-node-stubs": "^0.3.3",
"react-addons-test-utils": "^15.6.2",
"shelljs": "^0.8.1"
},
"eslintConfig": {
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
},
"allowImportExportEverywhere": true
},
"plugins": [
"meteor"
],
"extends": [
"airbnb",
"plugin:meteor/recommended"
],
"rules": {
"import/extensions": "off",
"import/no-extraneous-dependencies": "off",
"import/prefer-default-export": "off",
"no-underscore-dangle": "off",
"class-methods-use-this": "off",
"object-shorthand": [
"error",
"always",
{
"avoidQuotes": false
}
],
"meteor/eventmap-params": [
"error",
{
"eventParamName": "event",
"templateInstanceParamName": "instance"
}
],
"meteor/template-names": [
"off"
],
"react/jsx-filename-extension": [
1,
{
"extensions": [
".js",
".jsx"
]
}
],
"react/forbid-prop-types": "off",
"jsx-a11y/no-static-element-interactions": "off",
"jsx-a11y/click-events-have-key-events": "off",
"jsx-a11y/no-noninteractive-element-interactions": "off",
"jsx-a11y/anchor-is-valid": "off"
},
"settings": {
"import/resolver": "meteor"
}
},
"postcss": {
"plugins": {
"autoprefixer": {
"browsers": [
"last 2 versions"
]
}
}
}
}