forked from jakemmarsh/react-booster-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.38 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.38 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
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "react-booster-boilerplate",
"version": "1.0.0",
"description": "A ReactJS boilerplate utilizing React Router, Redux, and ImmutableJS. Includes a build system using Webpack and React Hot Loader.",
"scripts": {
"dev": "NODE_ENV=development PORT=3000 HOST=localhost babel-node webpack_server.js",
"lint": "eslint .",
"build": "NODE_ENV=production webpack",
"pretest": "npm run lint",
"test": "NODE_ENV=test node ./node_modules/karma/bin/karma start --single-run --browsers PhantomJS"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jakemmarsh/react-booster-boilerplate.git"
},
"keywords": [
"react",
"reactjs",
"react-router",
"redux",
"flux",
"immutablejs",
"boilerplate",
"javascript",
"webpack"
],
"author": "Jake Marsh <jakemmarsh@gmail.com> (http://jakemmarsh.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jakemmarsh/react-booster-boilerplate/issues"
},
"homepage": "https://github.com/jakemmarsh/react-booster-boilerplate#readme",
"dependencies": {
"express": "^4.13.4",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-router": "^2.0.0"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.5.2",
"babel-eslint": "^6.1.0",
"babel-loader": "^6.2.3",
"babel-plugin-react-transform": "^2.0.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-register": "^6.6.0",
"chai": "^3.5.0",
"clean-webpack-plugin": "^0.1.9",
"copy-webpack-plugin": "^3.0.1",
"css-loader": "^0.23.1",
"eslint": "^2.13.1",
"eslint-plugin-react": "^5.2.2",
"extract-text-webpack-plugin": "^1.0.1",
"immutable": "^3.7.6",
"jenerate": "0.0.1",
"karma": "^1.1.0",
"karma-mocha": "^1.1.1",
"karma-phantomjs-launcher": "^1.0.0",
"karma-spec-reporter": "0.0.24",
"karma-webpack": "^1.7.0",
"mocha": "^2.4.5",
"node-sass": "^3.8.0",
"npm-install-webpack-plugin": "^4.0.3",
"phantomjs-prebuilt": "^2.1.4",
"react-addons-test-utils": "^15.1.0",
"react-hot-loader": "^1.3.0",
"react-transform-hmr": "^1.0.2",
"redux": "^3.3.1",
"sass-loader": "^4.0.0",
"style-loader": "^0.13.0",
"webpack": "^1.12.14",
"webpack-dev-middleware": "^1.5.1",
"webpack-hot-middleware": "^2.9.1",
"webpack-merge": "^0.14.0",
"yargs": "^4.7.1"
}
}