This repository has been archived by the owner on Jun 7, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
94 lines (94 loc) · 2.74 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "book-react-redux",
"version": "0.2.0",
"description": "Sample code for the book An annotated SPA with React and Redux",
"main": "bundles/server.js",
"scripts": {
"start": "node bundles/server.js",
"debug": "node-debug -p 8888 bundles/server.js",
"lint": "eslint --ext .jsx,.js . || exit 0",
"test": "node scripts/tests.js",
"coverage": "node scripts/tests.js --coverage",
"build": "webpack -d --config webpack.config/development.js",
"watch": "webpack -d --config webpack.config/development.js --watch &",
"production": "webpack -p --config webpack.config/production.js",
"electron": "electron bundles/electron.js",
"updateModules": "updtr"
},
"myWebServer": {
"port": 8080,
"host": "http://localhost",
"restAPIpath": "/data/v2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Satyam/book-react-redux.git"
},
"keywords": [
"react",
"redux",
"guide",
"book"
],
"author": "Daniel Barreiro",
"license": "MIT",
"bugs": {
"url": "https://github.com/Satyam/book-react-redux/issues"
},
"homepage": "https://github.com/Satyam/book-react-redux#readme",
"dependencies": {
"body-parser": "^1.15.2",
"bootstrap": "^3.3.6",
"classnames": "^2.2.5",
"cookie-parser": "^1.4.3",
"denodeify": "^1.2.1",
"electron-prebuilt": "^1.3.5",
"express": "^4.14.0",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.15.0",
"react": "^15.3.1",
"react-addons-update": "^15.3.1",
"react-dom": "^15.3.1",
"react-redux": "^4.4.5",
"react-router": "^2.8.0",
"react-router-redux": "^4.0.5",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0",
"sql.js": "^0.3.2"
},
"devDependencies": {
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"chai": "^3.5.0",
"chai-enzyme": "^0.5.1",
"cheerio": "^0.20.0",
"commander": "^2.9.0",
"css-loader": "^0.25.0",
"deep-diff": "^0.3.4",
"enzyme": "^2.4.1",
"eslint": "^3.5.0",
"eslint-config-airbnb": "^10.0.0",
"eslint-import-resolver-webpack": "^0.6.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-react": "^6.2.1",
"extract-text-webpack-plugin": "^1.0.1",
"fetch-mock": "^5.1.2",
"istanbul": "^1.0.0-alpha.2",
"jsdom": "^9.5.0",
"mkdirp": "^0.5.1",
"mocha": "^3.0.2",
"react-addons-perf": "^15.3.1",
"react-addons-test-utils": "^15.3.1",
"recursive-readdir": "^2.0.0",
"redux-devtools": "^3.3.1",
"redux-mock-store": "^1.2.0",
"rmdir": "^1.2.0",
"sinon": "^1.17.5",
"source-map-support": "^0.4.1",
"style-loader": "^0.13.1",
"webpack": "^1.13.2"
}
}