-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
97 lines (97 loc) · 2.87 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
95
96
97
{
"name": "react-redux-boilerplate",
"version": "1.0.0",
"description": "Hello, World! app in React and Redux",
"main": "./src/server.js",
"dependencies": {
"babel-cli": "^6.24.1",
"babel-polyfill": "^6.23.0",
"babel-runtime": "^6.23.0",
"classnames": "^2.2.5",
"express": "^4.15.3",
"isomorphic-fetch": "^2.2.1",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-redux": "^5.0.5",
"react-router-dom": "^4.1.2",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-mock-store": "^1.2.3",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"@storybook/react": "^3.1.8",
"babel-core": "^6.7.6",
"babel-eslint": "^7.2.3",
"babel-jest": "*",
"babel-loader": "^6.2.4",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.7.5",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.7.2",
"css-loader": "^0.28.4",
"css-modules-require-hook": "^4.0.6",
"enzyme": "^2.8.0",
"eslint": "^4.2.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-react": "^7.1.0",
"extract-text-webpack-plugin": "^2.1.2",
"install": "^0.10.1",
"jest": "^19.0.2",
"jest-fetch-mock": "^1.1.1",
"postcss-loader": "^2.0.5",
"react-addons-test-utils": "^15.4.2",
"regenerator-runtime": "*",
"style-loader": "^0.18.2",
"webpack": "^3.0.0",
"webpack-dev-middleware": "^1.10.2",
"webpack-hot-middleware": "^2.18.0"
},
"scripts": {
"build": "NODE_ENV=production babel src --out-dir dist --copy-files && webpack -p --progress --config webpack.prod.config.js",
"start": "NODE_ENV=production node ./dist/server.js",
"dev": "NODE_ENV=development babel-node ./src/server.js --presets es2015,stage-2",
"test": "./node_modules/jest/bin/jest.js --coverage",
"test:watch": "./node_modules/jest/bin/jest.js --watchAll #runs all tests --cache ",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"lint:fix": "eslint --fix .js src",
"lint": "eslint --ext .js src"
},
"eslintConfig": {
"env": {
"browser": true,
"node": true
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/wahengchang/react-redux-boilerplate.git"
},
"keywords": [
"react",
"redux",
"boilerplate",
"tutorial"
],
"author": "waheng",
"license": "ISC",
"bugs": {
"url": "https://github.com/wahengchang/react-redux-boilerplate/issues"
},
"homepage": "https://github.com/wahengchang/react-redux-boilerplate#readme",
"jest": {
"testPathIgnorePatterns": [
"./__tests__/notRun.js"
],
"automock": false,
"setupFiles": [
"./setupJest.js"
]
}
}