-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.16 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.16 KB
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
{
"name": "workshop-react-redux-weather-exercise",
"version": "1.0.0",
"description": "An exercise to learn React + Redux",
"scripts": {
"lint": "standard src/",
"clean": "rimraf dist",
"build:webpack": "cross-env NODE_ENV=production webpack --config webpack.config.pro.js",
"build": "npm run clean && npm run build:webpack",
"start": "cross-env NODE_ENV=production node server.js",
"server:dev": "cross-env NODE_ENV=development node server.js",
"test": "cross-env BABEL_DISABLE_CACHE=1 NODE_ENV=test mocha --compilers js:babel-register --require test/unit/setup.js --recursive test/unit/**/*.spec.js",
"test:watch": "npm test -- --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/angelsanchez/workshop-react-redux-weather-exercise.git"
},
"license": "MIT",
"homepage": "https://github.com/angelsanchez/workshop-react-redux-weather-exercise",
"devDependencies": {
"babel-cli": "6.11.4",
"babel-core": "6.13.2",
"babel-loader": "6.2.5",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-webpack-loaders": "^0.7.1",
"babel-polyfill": "6.13.0",
"babel-preset-es2015": "6.13.2",
"babel-preset-react": "6.11.1",
"babel-preset-react-hmre": "1.1.1",
"babel-preset-stage-0": "6.5.0",
"chai": "3.5.0",
"copy-webpack-plugin": "3.0.1",
"cross-env": "2.0.0",
"css-loader": "0.23.1",
"enzyme": "2.4.1",
"express": "4.14.0",
"extract-text-webpack-plugin": "1.0.1",
"file-loader": "0.9.0",
"html-loader": "0.4.3",
"html-webpack-plugin": "2.22.0",
"jsdom": "^9.4.2",
"mocha": "^3.0.2",
"pre-commit": "1.1.3",
"react-addons-test-utils": "15.3.1",
"redux-devtools": "3.3.1",
"redux-devtools-dock-monitor": "1.1.1",
"redux-devtools-log-monitor": "1.0.11",
"rimraf": "2.5.4",
"sinon": "^1.17.5",
"standard": "8.0.0-beta.5",
"style-loader": "0.13.1",
"webpack": "1.13.2",
"webpack-dev-middleware": "1.6.1",
"webpack-hot-middleware": "2.12.2"
},
"dependencies": {
"react": "15.3.1",
"react-dom": "15.3.1",
"react-redux": "4.4.5",
"redux-saga": "0.11.0"
},
"pre-commit": [
"lint"
]
}