This repository has been archived by the owner on Feb 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 364
/
package.json
81 lines (81 loc) · 2.28 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
{
"scripts": {
"start": "meteor",
"pretest": "npm run lint --silent",
"test": "TEST_BROWSER_DRIVER=nightmare meteor test --once --driver-package meteortesting:mocha",
"test-app": "TEST_BROWSER_DRIVER=nightmare meteor test --full-app --once --driver-package meteortesting:mocha",
"test-watch": "TEST_BROWSER_DRIVER=nightmare meteor test --driver-package meteortesting:mocha",
"test-app-watch": "TEST_BROWSER_DRIVER=nightmare meteor test --full-app --driver-package meteortesting:mocha",
"test-watch-terminal": "TEST_WATCH=1 TEST_BROWSER_DRIVER=nightmare meteor test --driver-package meteortesting:mocha",
"test-app-watch-terminal": "TEST_WATCH=1 TEST_BROWSER_DRIVER=nightmare meteor test --full-app --driver-package meteortesting:mocha",
"lint": "eslint ."
},
"dependencies": {
"@babel/runtime": "^7.10.1",
"autoprefixer": "^6.4.1",
"babel-runtime": "^6.26.0",
"bcrypt": "^5.0.0",
"faker": "^3.1.0",
"meteor-node-stubs": "^0.3.2"
},
"devDependencies": {
"babel-eslint": "^6.1.2",
"eslint": "^3.7.0",
"eslint-config-airbnb": "^11.2.0",
"eslint-import-resolver-meteor": "^0.3.4",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-meteor": "^4.2.2",
"eslint-plugin-react": "^6.10.3",
"nightmare": "^3.0.1",
"shell-source": "^1.1.0",
"shelljs": "^0.7.4"
},
"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
}
],
"meteor/eventmap-params": [
"error",
{
"eventParamName": "event",
"templateInstanceParamName": "instance"
}
],
"meteor/template-names": [
"off"
]
},
"settings": {
"import/resolver": "meteor"
}
},
"postcss": {
"plugins": {
"autoprefixer": {
"browsers": [
"last 2 versions"
]
}
}
}
}