-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.02 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
{
"name": "web-app",
"version": "0.0.1",
"description": "web app use react redux and webpack",
"main": "app/index.js",
"scripts": {
"lint": "eslint 'app/**/*.@(js|jsx)'",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"start": "webpack-dev-server --devtool eval --progress --hot --colors --content-base app",
"deploy": "NODE_ENV=production webpack -p --config webpack.production.config.js",
"validate": "npm ls"
},
"repository": {
"type": "git",
"url": "https://github.com/luckcoding"
},
"keywords": [
"webapp",
"react",
"redux",
"webpack"
],
"author": "luckcoding",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.4.5",
"babel-loader": "^6.2.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"classnames": "^2.2.3",
"extract-text-webpack-plugin": "^1.0.1",
"history": "^2.0.0-rc2",
"react": "^0.14.6",
"react-dom": "^0.14.6",
"react-hot-loader": "^1.3.0",
"react-redux": "^4.0.6",
"react-router": "^2.0.0-rc5",
"redux": "^3.0.6",
"url-loader": "^0.5.7",
"webpack": "^1.12.12"
},
"dependencies": {
"babel-eslint": "^5.0.0-beta8",
"babel-plugin-transform-runtime": "^6.4.3",
"babel-preset-stage-1": "^6.5.0",
"babel-runtime": "^6.3.19",
"copy-webpack-plugin": "^1.1.1",
"css-loader": "^0.23.1",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^4.0.0",
"eslint-plugin-react": "^3.16.1",
"file-loader": "^0.8.5",
"isomorphic-fetch": "^2.2.1",
"node-sass": "^3.4.2",
"open-browser-webpack-plugin": "0.0.2",
"react-addons-css-transition-group": "^0.14.8",
"react-router-redux": "^4.0.0",
"react-slick": "^0.10.0",
"react-tap-event-plugin": "^0.2.2",
"redux-logger": "^2.5.2",
"redux-thunk": "^1.0.3",
"sass-loader": "^3.1.2",
"style-loader": "^0.13.0",
"tween-functions": "^1.2.0",
"webpack-dev-server": "^1.14.1",
"whatwg-fetch": "^0.11.0"
}
}