forked from kmildi/Lidehouse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 2.86 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
{
"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": {
"@babel/runtime": "7.0.0-beta.55",
"autoprefixer": "^6.4.1",
"babel-runtime": "^6.26.0",
"bcrypt": "^2.0.1",
"compress.js": "^1.1.2",
"faker": "^3.1.0",
"flat": "^4.1.0",
"fractional": "^1.0.0",
"meteor-node-stubs": "^0.4.1",
"nestable": "^0.2.0"
},
"devDependencies": {
"babel-eslint": "^6.1.2",
"eslint": "^3.5.0",
"eslint-config-airbnb": "^11.1.0",
"eslint-import-resolver-meteor": "^0.3.3",
"eslint-plugin-import": "^1.15.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-meteor": "^4.0.0",
"eslint-plugin-react": "^6.2.2",
"shell-source": "^1.1.0",
"shelljs": "^0.7.4",
"sinon": "^7.2.3"
},
"eslintConfig": {
"parser": "babel-eslint",
"parserOptions": {
"allowImportExportEverywhere": true
},
"plugins": [
"meteor"
],
"extends": [
"airbnb",
"plugin:meteor/recommended"
],
"rules": {
"import/no-extraneous-dependencies": "off",
"import/prefer-default-export": "off",
"no-underscore-dangle": "off",
"object-shorthand": [
"error",
"always",
{
"avoidQuotes": false
}
],
"object-property-newline": "off",
"max-len": [
"warn",
150
],
"meteor/eventmap-params": [
"error",
{
"eventParamName": "event",
"templateInstanceParamName": "instance"
}
],
"meteor/template-names": "off",
"meteor/no-session": "off",
"prefer-template": "off",
"prefer-arrow-callback": "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"
]
}
}
}
}