-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.34 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.34 KB
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
{
"name": "poop",
"private": true,
"scripts": {
"start": "meteor run",
"dev": "meteor --settings server/settings/develop.json",
"lint": "eslint .",
"lint-files-color": "eslint --color",
"pretest": "npm run lint --silent"
},
"eslintConfig": {
"parser": "babel-eslint",
"parserOptions": {
"allowImportExportEverywhere": true
},
"plugins": [
"meteor"
],
"env": {
"browser": true,
"es6": true,
"mocha": true
},
"globals": {
"chai": true
},
"extends": [
"airbnb",
"plugin:meteor/recommended"
],
"settings": {
"import/resolver": {
"meteor": {
"extensions": [
".js",
".jsx"
]
}
},
"import/external-module-folders": [
"node_modules"
]
},
"rules": {
"react/jsx-filename-extension": [
1,
{
"extensions": [
".js",
".jsx"
]
}
],
"import/no-extraneous-dependencies": "off",
"react/require-extension": "off",
"no-underscore-dangle": "off"
}
},
"dependencies": {
"arrayof": "^0.1.0",
"babel-runtime": "^6.23.0",
"body-parser": "^1.15.2",
"chart.js": "^2.5.0",
"convert-layout": "^0.4.1",
"express": "^4.14.0",
"fixed-data-table": "^0.6.3",
"indexof": "0.0.1",
"lodash": "^4.16.4",
"meteor-node-stubs": "~0.2.0",
"moment": "^2.15.1",
"rc-slider": "^6.1.1",
"react": "^15.4.2",
"react-addons-css-transition-group": "^15.3.2",
"react-addons-pure-render-mixin": "^15.4.2",
"react-bootstrap": "^0.30.7",
"react-chartjs-2": "^2.0.5",
"react-copy-to-clipboard": "^4.2.3",
"react-datetime": "^2.8.8",
"react-dimensions": "^1.3.0",
"react-dom": "^15.4.2",
"react-helmet": "^4.0.0",
"react-redux": "^4.4.5",
"react-router": "^2.8.1",
"react-router-bootstrap": "^0.23.1",
"react-router-redux": "^4.0.7",
"react-toastr": "^2.8.2",
"redux": "^3.6.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.14.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-meteor": "^4.0.0",
"eslint-plugin-react": "^6.2.1"
}
}