-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.43 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
{
"private": true,
"engines": {
"node": ">=6.1.0",
"npm": "3.8.6"
},
"scripts": {
"postinstall": "if-env NODE_ENV=production && npm run build || :",
"start": "if-env NODE_ENV=production && clusterfork bin/server || webpack-dev-server --hot",
"build": "webpack",
"clean": "rm -rf build",
"lint": "npm run clean && npm run lint:es lint:css",
"lint:es": "eslint .",
"lint:css": "stylelint \"**/*.css\""
},
"dependencies": {
"autoprefixer": "6.3.6",
"babel-core": "6.7.7",
"babel-eslint": "6.0.4",
"babel-loader": "6.2.4",
"babel-plugin-lodash": "2.3.0",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"babel-preset-stage-0": "6.5.0",
"classnames": "2.2.5",
"clean-webpack-plugin": "0.1.8",
"compression": "1.6.1",
"css-loader": "0.23.1",
"ejs": "2.4.1",
"es6-promise": "3.1.2",
"eslint": "2.9.0",
"eslint-config-airbnb": "8.0.0",
"eslint-plugin-import": "1.0.3",
"eslint-plugin-jsx-a11y": "1.0.4",
"eslint-plugin-react": "5.0.1",
"exports-loader": "0.6.3",
"express": "4.13.4",
"extract-text-webpack-plugin": "1.0.1",
"helmet": "1.3.0",
"html-webpack-plugin": "2.16.0",
"if-env": "1.0.0",
"imports-loader": "0.6.5",
"json-loader": "0.5.4",
"lodash": "4.11.2",
"node-clusterfork": "0.4.0",
"normalize.css": "4.1.1",
"postcss-loader": "0.8.2",
"react": "15.0.2",
"react-css-modules": "3.7.6",
"react-dom": "15.0.2",
"react-redux": "4.4.5",
"react-router": "2.3.0",
"redux": "3.5.2",
"redux-devtools": "3.2.0",
"redux-devtools-dock-monitor": "1.1.1",
"redux-devtools-log-monitor": "1.0.11",
"redux-localstorage": "0.4.0",
"style-loader": "0.13.1",
"stylelint": "6.1.0",
"stylelint-config-standard": "6.0.0",
"webpack": "1.13.0",
"webpack-dev-server": "1.14.1",
"whatwg-fetch": "1.0.0"
},
"babel": {
"presets": [
"es2015",
"react",
"stage-0"
],
"plugins": [
"lodash"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "airbnb",
"rules": {
"global-require": 1,
"import/no-unresolved": 0,
"new-cap": 0,
"no-case-declarations": 0,
"no-confusing-arrow": 0,
"react/prefer-stateless-function": 1,
"space-before-function-paren": [
2,
"always"
]
}
},
"stylelint": {
"extends": "stylelint-config-standard"
}
}