forked from MehaRima/Meteor_TrackCert_v2.1.1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.31 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
{
"name": "meal_calendar",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "meteor run",
"lint": "eslint .",
"pretest": "npm run lint --silent"
},
"author": {
"name": "Tyler B. Long"
},
"license": "MIT",
"eslintConfig": {
"parser": "babel-eslint",
"parserOptions": {
"allowImportExportEverywhere": true
},
"plugins": [
"meteor"
],
"extends": [
"airbnb",
"plugin:meteor/recommended"
],
"settings": {
"import/resolver": "meteor"
},
"rules": {
"indent": [
"error",
4
],
"import/no-unresolved": [
2,
{
"ignore": [
"^meteor/"
]
}
],
"meteor/eventmap-params": [
2,
{
"templateInstanceParamName": "instance"
}
]
}
},
"dependencies": {
"@babel/runtime": "^7.12.5",
"fullcalendar": "^2.9.1",
"jquery": "^1.12.4",
"meteor-node-stubs": "~0.2.0"
},
"devDependencies": {
"babel-eslint": "^6.1.2",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-import-resolver-meteor": "^0.2.4",
"eslint-plugin-import": "^1.11.0",
"eslint-plugin-jsx-a11y": "^1.5.5",
"eslint-plugin-meteor": "^3.6.0",
"eslint-plugin-react": "^5.2.2"
}
}