-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
132 lines (132 loc) · 3.47 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
132
{
"scripts": {
"start": "meteor",
"debug": "meteor run --inspect --inspect-brk",
"pretest": "npm run lint --silent",
"test": "meteor test --once --driver-package meteortesting:mocha",
"test-debug": "meteor test --inspect --inspect-brk --driver-package=meteortesting:mocha --port 3001",
"test-app": "meteor test --full-app --once --driver-package dispatch:mocha-phantomjs",
"test-watch": "meteor test --driver-package meteortesting:mocha",
"test-app-watch": "meteor test --full-app --driver-package meteortesting:mocha",
"test-watch-terminal": "TEST_WATCH=1 meteor test --driver-package dispatch:mocha-phantomjs",
"test-app-watch-terminal": "TEST_WATCH=1 meteor test --full-app --driver-package dispatch:mocha-phantomjs",
"lint": "eslint ."
},
"dependencies": {
"@antoineschaller/kadira": "^1.0.1",
"@babel/runtime": "^7.9.6",
"autoprefixer": "^6.4.1",
"bcrypt": "^4.0.1",
"compress.js": "^1.1.2",
"deep-extend": "^0.6.0",
"faker": "^3.1.0",
"flat": "^4.1.0",
"fractional": "^1.0.0",
"meteor-node-stubs": "^0.4.1",
"nestable": "^0.2.0",
"rus-diff": "^1.1.0",
"xlsx": "^0.15.6"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-import-resolver-meteor": "^0.4.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-meteor": "^7.0.0",
"shell-source": "^1.1.0",
"shelljs": "^0.7.4",
"sinon": "^7.2.3"
},
"eslintConfig": {
"parser": "babel-eslint",
"parserOptions": {
"allowImportExportEverywhere": true
},
"plugins": [
"meteor"
],
"extends": [
"airbnb-base",
"plugin:meteor/recommended"
],
"rules": {
"import/no-extraneous-dependencies": "off",
"import/prefer-default-export": "off",
"import/no-absolute-path": "off",
"import/extensions": "off",
"no-multi-spaces": "off",
"no-underscore-dangle": "off",
"no-else-return": "off",
"no-nested-ternary": "off",
"no-unused-expressions": "off",
"no-restricted-syntax": "off",
"no-lonely-if": "off",
"object-shorthand": [
"error",
"always",
{
"avoidQuotes": false
}
],
"object-property-newline": "off",
"object-curly-newline": "off",
"lines-between-class-members": "off",
"arrow-parens": "off",
"max-len": [
"warn",
150,
{
"ignoreComments": true
}
],
"indent": [
"warn",
2,
{
"ignoreComments": true,
"SwitchCase": 1
}
],
"meteor/eventmap-params": [
"error",
{
"eventParamName": "event",
"templateInstanceParamName": "instance"
}
],
"meteor/template-names": "off",
"meteor/no-session": "off",
"prefer-template": "off",
"prefer-arrow-callback": "off",
"prefer-destructuring": "off",
"no-param-reassign": [
"error",
{
"props": false
}
],
"no-return-assign": "warn",
"no-useless-concat": "warn",
"no-unused-vars": "warn",
"no-plusplus": [
"error",
{
"allowForLoopAfterthoughts": true
}
]
},
"settings": {
"import/resolver": "meteor"
}
},
"postcss": {
"plugins": {
"autoprefixer": {
"browsers": [
"last 2 versions"
]
}
}
}
}