-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.86 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
{
"name": "Bill",
"version": "1.0.0",
"description": "Displays a customer's bill from a JSON endpoint ",
"scripts": {
"start": "npm run build && node prodServer.js",
"build": "webpack --config webpack.config.prod.js --progress --profile --colors",
"dev": "node devServer.js",
"test": "NODE_ENV=test mocha './src/**/*.spec.js' --compilers js:babel-core/register"
},
"keywords": [
"node",
"react",
"express",
"hot-loading",
"webpack-hot-middleware",
"babel6",
"eslint"
],
"engines": {
"node": ">= 0.6.0",
"npm": ">= 1.0.0"
},
"author": "Vasily Shelkov",
"license": "MIT",
"bugs": {
"url": "https://github.com/VasilyShelkov/React-Hot-Dev-Starter/issues"
},
"homepage": "https://github.com/VasilyShelkov/React-Hot-Dev-Starter#readme",
"dependencies": {
"babel-core": "^6.8.0",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"bootstrap": "^4.0.0-alpha.2",
"d3": "^3.5.17",
"express": "^4.13.4",
"extend": "^3.0.0",
"isomorphic-fetch": "^2.2.1",
"moment": "^2.13.0",
"react": "^15.0.2",
"react-dom": "^15.0.2",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0",
"webpack": "^1.13.0"
},
"devDependencies": {
"css-loader": "^0.23.1",
"deep-freeze": "0.0.1",
"eslint": "^2.10.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-react": "^5.1.1",
"eventsource-polyfill": "^0.9.6",
"expect": "^1.20.1",
"mocha": "^2.4.5",
"react-addons-test-utils": "^15.0.2",
"redbox-react": "^1.2.4",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0"
},
"private": true,
"main": "prodServer.js"
}