This repository has been archived by the owner on Aug 22, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.65 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
{
"name": "react-for-hipsters-boilerplate",
"version": "1.0.4",
"description": "All you need for React development",
"scripts": {
"build:test": "webpack --config webpack.config.test.js",
"build:prod": "webpack --config webpack.config.prod.js",
"build": "npm run build:prod",
"lint": "eslint src/scripts/",
"preversion": "npm run lint && npm test",
"postversion": "git push origin HEAD && git push --tags",
"test": "exit 0"
},
"keywords": [
"react",
"webpack",
"redux"
],
"author": "Sergey Rubanov <chi187@gmail.com>",
"license": "MIT",
"private": true,
"dependencies": {
"classnames": "^2.2.3",
"es6-promise": "^3.1.2",
"lodash": "^4.11.1",
"react": "^15.0.1",
"react-dom": "^15.0.1",
"react-redux": "^4.4.5",
"redux": "^3.4.0",
"socket.io-client": "^1.4.5",
"whatwg-fetch": "^0.11.0"
},
"devDependencies": {
"autoprefixer": "^6.3.6",
"babel-core": "^6.7.6",
"babel-eslint": "^6.0.2",
"babel-loader": "^6.2.4",
"babel-plugin-react-transform": "^2.0.2",
"css-loader": "^0.23.1",
"eslint": "^2.8.0",
"eslint-config-airbnb": "^7.0.0",
"eslint-plugin-react": "^5.0.0",
"express": "^4.13.4",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"html-webpack-plugin": "^2.15.0",
"json-loader": "^0.5.4",
"postcss-loader": "^0.8.2",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"redbox-react": "^1.2.3",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.0",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0"
}
}