This repository has been archived by the owner on Feb 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 75
/
package.json
84 lines (84 loc) · 2.4 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
{
"name": "react-hot-redux-firebase-starter",
"version": "0.1.0",
"description": "Boilerplate for ReactJS, Redux, Hot Loading and Firebase 3.x",
"scripts": {
"prestart": "babel-node tools/startMessage.js",
"start": "npm-run-all --parallel test:watch open:src lint:watch",
"open:src": "babel-node tools/srcServer.js",
"test": "mocha --reporter progress tools/testSetup.js src/*.test.js",
"test:watch": "npm run test -- --watch",
"lint": "node_modules/.bin/esw webpack.config.* tools src",
"lint:watch": "npm run lint -- --watch"
},
"keywords": [
"react",
"reactjs",
"boilerplate",
"hot",
"reload",
"hmr",
"live",
"edit",
"webpack",
"firebase"
],
"author": "Dan Abramov <[email protected]> (http://github.com/gaearon)",
"license": "MIT",
"bugs": {
"url": "https://github.com/gaearon/react-hot-boilerplate/issues"
},
"homepage": "https://github.com/gaearon/react-hot-boilerplate",
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.9.1",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "6.9.0",
"colors": "^1.1.2",
"css-loader": "^0.23.1",
"enzyme": "^2.3.0",
"eslint": "^2.11.1",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-react": "^5.1.1",
"eslint-watch": "^2.1.11",
"expect": "^1.20.1",
"express": "^4.13.4",
"file-loader": "^0.8.5",
"jsdom": "^9.2.1",
"mocha": "^2.5.3",
"nock": "^8.0.0",
"npm-run-all": "^2.1.1",
"open": "0.0.5",
"react-addons-test-utils": "^15.1.0",
"react-hot-loader": "^3.0.0-beta.2",
"redux-immutable-state-invariant": "^1.2.3",
"redux-mock-store": "^1.0.4",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0"
},
"dependencies": {
"bootstrap": "^3.3.6",
"firebase": "^3.0.3",
"jquery": "^2.2.4",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-loader": "^2.4.0",
"react-redux": "^4.4.5",
"react-router": "^2.4.1",
"react-router-redux": "^4.0.4",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0",
"toastr": "^2.1.2"
},
"repository": {
"type": "git",
"url": "https://github.com/gaearon/react-hot-boilerplate.git"
}
}