-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 2.72 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
{
"name": "msgtester",
"private": true,
"scripts": {
"start": "meteor --settings settings-development.json",
"test": "jest"
},
"dependencies": {
"@babel/runtime": "^7.8.3",
"ajv": "^5.0.0",
"bcryptjs": "^2.4.3",
"commonmark": "^0.29.0",
"core-js": "^3.6.4",
"diff": "^3.5.0",
"handlebars": ">=4.3.0",
"jquery": "^3.4.1",
"jquery-validation": "^1.19.1",
"juice": "^5.2.0",
"lodash": "^4.17.10",
"meteor-node-stubs": "^0.4.1",
"moment": "^2.24.0",
"moment-timezone": "^0.5.26",
"pg": "^7.4.3",
"prop-types": "^15.6.1",
"react": "^16.8.6",
"react-bootstrap": "^0.32.4",
"react-dom": "^16.8.6",
"react-modal": "^3.4.4",
"react-router-bootstrap": "^0.25.0",
"react-router-dom": "^5.0.1",
"react-scroll-sync": "^0.4.1",
"react-select": "^1.2.1",
"react-tooltip": "^4.0.3",
"simpl-schema": "^0.3.2"
},
"devDependencies": {
"babel-jest": "^25.1.0",
"babel-plugin-lodash": "^3.3.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.3.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-import-resolver-meteor": "^0.4.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-meteor": "^4.2.1",
"eslint-plugin-react": "^7.7.0",
"jest": "^25.1.0"
},
"eslintConfig": {
"parserOptions": {
"ecmaFeatures": {
"jsx": true
}
},
"plugins": [
"meteor",
"react"
],
"extends": [
"airbnb",
"plugin:meteor/recommended",
"plugin:react/recommended"
],
"env": {
"browser": 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": 0,
"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
},
"settings": {
"import/resolver": "meteor"
}
}
}