-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
128 lines (128 loc) · 3.3 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
{
"name": "agile-freight",
"version": "2.0.0",
"private": true,
"scripts": {
"start": "meteor run",
"test": "TEST_BROWSER_DRIVER=nightmare SERVER_TEST_REPORTER=tap CLIENT_TEST_REPORTER=tap meteor test --once --driver-package dispatch:mocha",
"chimp": "chimp --ddp=http://localhost:5000 --watch --mocha --path=tests"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"bcrypt": "^1.0.3",
"chart.js": "^2.7.0",
"core-js": "^2.5.1",
"create-react-class": "^15.6.0",
"eslint-plugin-meteor": "^4.1.6",
"lodash": "^4.17.4",
"meteor-node-stubs": "^0.2.11",
"moment": "^2.18.1",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-chartjs-2": "^2.6.2",
"react-datetime": "^2.10.1",
"react-dom": "^15.6.1",
"react-loadable": "^3.3.1",
"react-redux": "^5.0.6",
"react-router": "^4.1.2",
"react-router-dom": "^4.1.2",
"react-select": "1.0.0-rc.5",
"redux": "^3.7.1",
"reselect": "^3.0.1"
},
"devDependencies": {
"babel-eslint": "^7.2.1",
"chimp": "^0.49.1",
"deep-freeze": "0.0.1",
"enzyme": "^2.8.2",
"eslint": "^3.18.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-import-resolver-meteor": "^0.3.4",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-meteor": "^4.0.1",
"eslint-plugin-prettier": "^2.2.0",
"eslint-plugin-react": "^6.10.3",
"fibers": "^2.0.0",
"nightmare": "^2.10.0",
"prettier": "^1.7.0",
"react-addons-test-utils": "^15.5.1",
"react-test-renderer": "^15.5.4",
"redux-devtools": "^3.3.2"
},
"eslintConfig": {
"parser": "babel-eslint",
"parserOptions": {
"allowImportExportEverywhere": true
},
"plugins": [
"meteor",
"prettier"
],
"extends": [
"airbnb",
"plugin:meteor/recommended"
],
"settings": {
"import/resolver": "meteor"
},
"rules": {
"arrow-parens": "off",
"import/no-extraneous-dependencies": "off",
"import/extensions": [
"off",
"never"
],
"no-underscore-dangle": "off",
"linebreak-style": "off",
"import/prefer-default-export": "off",
"no-multi-spaces": "off",
"react/prop-types": "off",
"react/forbid-prop-types": "off",
"react/jsx-indent-props": "off",
"react/jsx-closing-bracket-location": "off"
},
"globals": {
"_": true,
"$": true,
"window": true,
"document": true
}
},
"stylelint": {
"rules": {
"prettier/prettier": [
"error",
{
"singleQuote": true,
"trailingComma": "es5"
}
],
"at-rule-empty-line-before": "never",
"block-opening-brace-space-before": "always",
"comment-empty-line-before": [
"always",
{
"ignore": [
"stylelint-commands"
]
}
],
"declaration-colon-space-after": "always",
"declaration-colon-space-before": "never",
"indentation": 2,
"max-nesting-depth": 3,
"no-invalid-double-slash-comments": true,
"rule-non-nested-empty-line-before": [
"always",
{
"ignore": [
"after-comment"
]
}
],
"selector-list-comma-newline-after": "always",
"selector-no-id": true
}
}
}