-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.33 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
{
"private": true,
"name": "sofie-writes",
"version": "1.0.0",
"description": "sofie writes",
"main": "",
"scripts": {
"dev": "webpack-dev-server --progress --colors",
"build": "webpack -p --config webpack.production.config.js",
"deploy": "git push origin `git subtree split --prefix dist master`:gh-pages"
},
"author": "",
"license": "ISC",
"dependencies": {
"babel-core": "^6.9.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-polyfill": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"contentful": "^3.3.6",
"css-loader": "^0.23.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.21.0",
"image-webpack-loader": "^2.0.0",
"json-loader": "^0.5.4",
"lodash": "^4.13.1",
"normalize.css": "^4.2.0",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-markdown": "^2.3.0",
"react-redux": "^4.4.5",
"react-router": "^2.5.2",
"react-router-redux": "^4.0.5",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.1"
},
"devDependencies": {
"eslint": "^2.9.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-import-resolver-webpack": "^0.3.2",
"eslint-loader": "^1.4.0",
"eslint-plugin-import": "^1.10.0",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-react": "^5.2.2",
"react-hot-loader": "^1.3.0",
"webpack-dev-server": "^1.14.1"
},
"babel": {
"presets": [
"es2015",
"react"
],
"plugins": [
"transform-object-rest-spread"
]
},
"eslintConfig": {
"extends": "airbnb",
"settings": {
"import/resolver": "webpack"
},
"parserOptions": {
"ecmaVersion": 7,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true,
"experimentalObjectRestSpread": true
}
},
"globals": {
"React": true,
"Immutable": true,
"_": true
},
"rules": {
"global-require": 0,
"react/prop-types": 0,
"semi": [
2,
"never"
],
"new-cap": [
2,
{
"capIsNewExceptions": [
"Map",
"Set",
"List"
]
}
]
}
}
}