-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.01 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
{
"name": "React-router-talk",
"version": "1.0.0",
"description": "Talk about handling router states in react redux",
"main": "server.js",
"scripts": {
"build": "webpack --config ./config/webpack.config.js --progress --profile --colors",
"postinstall": "npm run build",
"lint": "./node_modules/.bin/eslint .",
"prepush": "npm run lint"
},
"repository": {
"type": "git",
"url": "https://github.com/Vizzuality/talks.git"
},
"author": {
"name": "Jose Angel Parreño",
"email": "[email protected]",
"url": "http://vizzuality.com"
},
"license": "MIT",
"dependencies": {
"babel-core": "^6.8.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.11.0",
"body-parser": "^1.15.2",
"css-loader": "^0.23.1",
"dotenv": "^2.0.0",
"express": "^4.13.4",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.21.0",
"json-loader": "^0.5.4",
"morgan": "^1.7.0",
"postcss-cssnext": "^2.7.0",
"postcss-hexrgba": "^0.2.1",
"postcss-import": "^8.1.2",
"postcss-loader": "^0.9.1",
"postcss-nested": "^1.0.0",
"postcss-simple-vars": "^3.0.0",
"pretty-error": "^2.0.0",
"react": "^15.0.2",
"react-dom": "^15.0.2",
"react-redux": "^4.4.5",
"react-router": "^2.8.1",
"react-router-redux": "^4.0.5",
"react-select": "^1.0.0-rc.2",
"redux": "^3.5.2",
"redux-i18n": "^1.0.8",
"redux-thunk": "^2.1.0",
"style-loader": "^0.13.1",
"stylelint-webpack-plugin": "^0.3.1",
"webpack": "^1.13.0",
"webpack-dotenv-plugin": "^1.3.2"
},
"devDependencies": {
"eslint": "^2.9.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^1.2.0",
"eslint-plugin-react": "^5.0.1",
"husky": "^0.11.7",
"stylelint": "^7.2.0",
"stylelint-config-standard": "^13.0.0",
"webpack-bundle-analyzer": "^1.3.0",
"webpack-dev-middleware": "^1.6.1"
}
}