-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
56 lines (56 loc) · 1.84 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
{
"name": "react-redux-timetravel",
"version": "1.0.0",
"description": "Simple React app using Redux",
"main": "webpack.config.js",
"scripts": {
"start": "webpack-dev-server --progress",
"build": "npm run lint && cross-env NODE_ENV=production webpack --config webpack.config.prod.js && ncp index.html dist/index.html",
"deploy": "npm run build && git commit dist -m \"Deploy\" && git push origin master && git subtree push --prefix dist origin gh-pages",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/argelius/react-redux-timetravel.git"
},
"author": "Andreas Argelius <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/argelius/react-redux-timetravel/issues"
},
"homepage": "https://github.com/argelius/react-redux-timetravel#readme",
"devDependencies": {
"autoprefixer": "^6.3.6",
"babel-core": "^6.9.1",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"cross-env": "^1.0.8",
"css-loader": "^0.23.1",
"eslint": "^2.12.0",
"eslint-plugin-promise": "^1.3.2",
"eslint-plugin-react": "^5.1.1",
"eslint-plugin-standard": "^1.3.2",
"file-loader": "^0.8.5",
"json-loader": "^0.5.4",
"ncp": "^2.0.0",
"postcss-loader": "^0.9.1",
"promise": "^7.1.1",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-hot-loader": "^3.0.0-beta.2",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"redux-devtools": "^3.3.1",
"redux-devtools-dock-monitor": "^1.1.1",
"redux-devtools-log-monitor": "^1.0.11",
"redux-logger": "^2.6.1",
"style-loader": "^0.13.1",
"stylus": "^0.54.5",
"stylus-loader": "^2.1.0",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
}
}