-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
131 lines (131 loc) · 3.03 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "vix-simpleui-react",
"private": true,
"scripts": {
"start": "meteor --settings settings-development.json",
"test": "jest"
},
"dependencies": {
"@cleverbeagle/seeder": "^1.3.1",
"babel-runtime": "^6.26.0",
"commonmark": "^0.28.1",
"core-js": "^2.5.1",
"fs": "0.0.1-security",
"generate-password": "^1.3.0",
"handlebars": "^4.0.11",
"jquery": "^2.2.4",
"jquery-validation": "^1.17.0",
"juice": "^4.2.2",
"lodash": "^4.17.4",
"meteor-node-stubs": "^0.3.2",
"moment": "^2.19.1",
"moment-timezone": "^0.5.14",
"mup": "^1.3.7",
"object-path": "^0.11.4",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-addons-pure-render-mixin": "^15.6.2",
"react-bootstrap": "^0.31.5",
"react-dom": "^16.0.0",
"react-recaptcha": "^2.3.5",
"react-router-bootstrap": "^0.24.4",
"react-router-dom": "^4.2.2",
"react-spinner": "^0.2.7",
"simpl-schema": "^0.3.2",
"xml2json": "^0.11.0"
},
"eslintConfig": {
"parserOptions": {
"ecmaFeatures": {
"jsx": true
}
},
"plugins": [
"meteor",
"react"
],
"extends": [
"airbnb",
"plugin:meteor/recommended",
"plugin:react/recommended"
],
"env": {
"browser": true,
"es6": true,
"jquery": true
},
"globals": {
"expect": false
},
"rules": {
"import/no-unresolved": 0,
"import/no-extraneous-dependencies": 0,
"import/extensions": 0,
"jsx-a11y/anchor-is-valid": [
"error",
{
"components": [
"Link"
],
"specialLink": [
"to"
]
}
],
"max-len": [
2,
{
"code": 89,
"comments": 89,
"ignoreUrls": true,
"ignoreTrailingComments": true,
"ignoreStrings": true,
"ignoreTemplateLiterals": true,
"ignoreRegExpLiterals": true
}
],
"no-alert": 0,
"no-console": 0,
"no-restricted-globals": 0,
"no-return-assign": [
"error",
"except-parens"
],
"no-underscore-dangle": [
"error",
{
"allow": [
"_id",
"_ensureIndex",
"_verifyEmailToken",
"_resetPasswordToken",
"_name"
]
}
],
"class-methods-use-this": 0,
"react/jsx-filename-extension": 0,
"react/forbid-prop-types": 0,
"// SJS - these are mine": 0,
"space-before-function-paren": 0,
"no-spaced-func": 0,
"func-call-spacing": 0,
"function-paren-newline": 0,
"block-spacing": 0,
"object-curly-spacing": 0,
"brace-style": 0,
"no-plusplus": 0,
"comma-dangle": 0,
"import/no-absolute-path": 0,
"import/prefer-default-export": 0,
"react/require-default-props": 0,
"react/sort-comp": 0
},
"settings": {
"import/resolver": "meteor"
}
},
"devDependencies": {
"babel-preset-react": "^6.24.1"
}
}