-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.09 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.09 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
{
"name": "react-app-template",
"version": "0.0.0",
"description": "Application template for React`",
"main": "server.js",
"scripts": {
"test": "eslint ./src ./tests && mocha tests --compilers js:babel-core/register --require ./tests/test_helper.js --recursive",
"build": "webpack --config webpack.config.prod.js --progress --profile --colors",
"start": "node server"
},
"repository": {
"type": "git",
"url": "https://github.com/thehackerati/react-app-template.git"
},
"keywords": [
"react",
"redux",
"immutable",
"boilerplate",
"hot",
"reload",
"babel",
"webpack",
"es6",
"es2015",
"mocha",
"chai"
],
"author": "Geoff Scott <geoff@hackerati.us> (http://github.com/geoffscott)",
"license": "MIT",
"bugs": {
"url": "https://github.com/thehackerati/react-app-template/issues"
},
"homepage": "https://github.com/thehackerati/react-app-template#readme",
"dependencies": {
"express": "^4.15.4",
"immutable": "^3.8.1",
"react": "^15.6.1",
"react-redux": "^5.0.5",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.1.1",
"chai-immutable": "^1.6.0",
"enzyme": "^2.9.1",
"eslint": "^4.4.1",
"eslint-plugin-react": "^7.1.0",
"extract-text-webpack-plugin": "^3.0.0",
"html-webpack-plugin": "^2.30.1",
"jsdom": "^11.1.0",
"mocha": "^3.5.0",
"node-libs-browser": "^2.0.0",
"react-addons-test-utils": "^15.6.0",
"react-dom": "^15.6.1",
"react-hot-loader": "^3.0.0-beta.7",
"react-test-renderer": "^15.6.1",
"redux-devtools": "^3.4.0",
"redux-devtools-dock-monitor": "^1.1.2",
"redux-devtools-log-monitor": "^1.3.0",
"sinon": "^3.1.0",
"stats-webpack-plugin": "^0.6.1",
"webpack": "^3.5.1",
"webpack-dev-middleware": "^1.12.0",
"webpack-hot-middleware": "^2.18.2"
}
}