-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.89 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
{
"name": "observatoire-gouvernement",
"private": true,
"scripts": {
"start": "webpack-dev-server --hot --history-api-fallback --open",
"lint": "eslint .",
"prebuild": "rimraf dist",
"build": "cross-env NODE_ENV=production webpack -p --config webpack.config.prod.js",
"pages": "gh-pages -d dist",
"deploy": "npm run build && npm run pages"
},
"dependencies": {
"d3": "^4.10.0",
"normalize.css": "^7.0.0",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-dom": "^15.5.4"
},
"devDependencies": {
"autoprefixer": "^7.1.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"cross-env": "^5.0.0",
"css-loader": "^0.28.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"gh-pages": "^1.0.0",
"html-webpack-plugin": "^2.28.0",
"node-sass": "^4.5.3",
"postcss-loader": "^2.0.5",
"react-hot-loader": "^3.0.0-beta.7",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.5",
"style-loader": "^0.17.0",
"url-loader": "^0.5.8",
"webpack": "^2.5.1",
"webpack-dev-server": "^2.4.5"
},
"babel": {
"presets": [
"es2015",
"react"
],
"plugins": [
"react-hot-loader/babel"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "airbnb",
"installedESLint": true,
"env": {
"browser": true
},
"plugins": [
"react"
],
"rules": {
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": [
"webpack.*.js"
]
}
]
}
}
}