-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
103 lines (103 loc) · 2.73 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
{
"name": "Dashinator",
"version": "1.3.0",
"description": "Dashinator the daringly delightful dashboard.",
"scripts": {
"test": "./precommit.sh",
"start": "node server/index.js"
},
"keywords": [
"dashboard",
"information radar",
"dashing"
],
"repository": {
"type": "git",
"url": "git@github.com:mikefarah/dashinator.git"
},
"bin": {
"dashinator": "./server/index.js"
},
"license": "MIT",
"homepage": "https://github.com/mikefarah/dashinator",
"dependencies": {
"babel-polyfill": "^6.3.14",
"babel-register": "^6.4.3",
"buffer-shims": "^1.0.0",
"compression-webpack-plugin": "^0.3.2",
"core-util-is": "^1.0.2",
"dateformat": "^2.0.0",
"ease-component": "^1.0.0",
"express": "^4.13.3",
"gather-stream": "^1.0.0",
"humanize-duration": "^3.9.1",
"less-middleware": "^2.2.0",
"lodash": "^4.16.2",
"numeral": "^2.0.1",
"process-nextick-args": "^1.0.7",
"raf": "^3.3.0",
"react": "^15.4.1",
"react-chartist": "^0.10.2",
"react-dom": "^15.4.1",
"react-redux": "^4.2.1",
"redux": "^3.2.1",
"redux-little-router": "^12.1.2",
"redux-thunk": "^1.0.3",
"request": "^2.75.0",
"request-promise-native": "^1.0.3",
"rickshaw": "^1.6.0",
"serve-static": "^1.10.0",
"socket.io": "^1.4.8",
"socket.io-client": "^1.4.8",
"truncate": "^2.0.0",
"util-deprecate": "^1.0.2",
"webpack": "^1.11.0",
"webpack-dev-middleware": "^1.4.0",
"webpack-hot-middleware": "^2.9.1",
"winston": "^2.2.0",
"yamljs": "^0.2.8"
},
"devDependencies": {
"babel-core": "^6.3.15",
"babel-jest": "^16.0.0",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.3.13",
"babel-preset-react-hmre": "^1.1.1",
"babel-runtime": "^6.3.13",
"cssbrush": "^0.5.0",
"enzyme": "^2.4.1",
"eslint": "^3.6.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.3.0",
"jest": "^17.0.3",
"jest-cli": "^17.0.3",
"js-beautify": "^1.6.4",
"nodemon": "^1.10.2",
"react-addons-test-utils": "^15.4.1"
},
"esformatter": {
"plugins": [
"esformatter-jsx"
],
"jsx": {
"formatJSXExpressions": true,
"JSXExpressionsSingleLine": true,
"formatJSX": true,
"attrsOnSameLineAsTag": true,
"maxAttrsOnTag": 1,
"firstAttributeOnSameLine": false,
"spaceInJSXExpressionContainers": " ",
"alignWithFirstAttribute": true,
"htmlOptions": {
"brace_style": "collapse",
"indent_char": " ",
"indent_size": 2,
"max_preserve_newlines": 2,
"preserve_newlines": true
}
}
}
}