-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.97 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
{
"name": "react-redux-workshop",
"version": "0.0.1",
"description": "Workshop for learning React and Redux basics.",
"main": "app/main.js",
"scripts": {
"build-dev": "webpack -d --config webpack.dev.config.js --profile --progress -- colors",
"build-prod": "webpack -p --config webpack.prod.config.js --profile --progress --colors",
"test": "karma start",
"start": "webpack-dev-server -d --config webpack.dev.config.js --content-base public/ --progress --colors"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cepeda617/react-redux-workshop.git"
},
"keywords": [
"react",
"redux",
"workshop"
],
"author": "Peter Cepeda",
"license": "ISC",
"bugs": {
"url": "https://github.com/cepeda617/react-redux-workshop/issues"
},
"homepage": "https://github.com/cepeda617/react-redux-workshop#readme",
"dependencies": {
"babel-plugin-transform-runtime": "^6.4.3",
"babel-polyfill": "^6.3.14",
"classnames": "^2.2.3",
"history": "^1.17.0",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.2.1",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"react-redux": "^4.2.1",
"react-router": "^1.0.3",
"react-router-redux": "^2.1.0",
"redux": "^3.2.1",
"redux-logger": "^2.4.0",
"redux-thunk": "^1.0.3"
},
"devDependencies": {
"autoprefixer": "^6.3.1",
"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",
"clean-css": "^3.4.9",
"css-loader": "^0.23.1",
"extract-text-webpack-plugin": "^1.0.1",
"json-loader": "^0.5.4",
"karma-webpack": "^1.7.0",
"node-sass": "^3.4.2",
"postcss-loader": "^0.8.0",
"react-hot-loader": "^1.3.0",
"sass-loader": "^3.1.2",
"webpack": "^1.12.12",
"webpack-dev-middleware": "^1.5.1",
"webpack-dev-server": "^1.14.1",
"webpack-notifier": "^1.2.1"
},
"engines": {
"node": "5.4.x"
}
}