-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
108 lines (108 loc) · 3.23 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
98
99
100
101
102
103
104
105
106
107
108
{
"name": "Contacts-App",
"version": "2.1.2",
"description": "Contacts App",
"scripts": {
"dev": "babel-node server.js",
"build": "rimraf dist && NODE_ENV=production webpack --config ./webpack.production.config.js --progress --profile --colors",
"start": "NODE_ENV=production PORT=80 babel-node server.js",
"lint": "eslint src; exit 0",
"clean": "rimraf dist",
"dev-win": "SET NODE_ENV=development&&babel-node server.js",
"build-win": "rimraf dist && SET NODE_ENV=production&& webpack --config ./webpack.production.config.js --progress --profile --colors",
"start-win": "SET NODE_ENV=production&&SET PORT=80&&babel-node server.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"jest": {
"setupFiles": [
"./config/jest/jest-setup.js"
],
"collectCoverageFrom": [
"**/src/**/*.js",
"**/src/components/*.jsx",
"!**/__mocks__/**",
"!**/coverage/**",
"!**/src/**/index.js",
"!**/src/services/**",
"!**/src/store/**",
"!**/__tests__/**"
]
},
"repository": {
"type": "git",
"url": "https://github.com/cloudmu/react-redux-starter-kit.git"
},
"keywords": [
"react",
"reactjs",
"redux",
"reduxjs",
"react-router",
"webpack",
"boilerplate"
],
"author": "Jonatan García Clavo",
"license": "MIT",
"bugs": {
"url": "https://github.com/cloudmu/react-redux-starter-kit/issues"
},
"homepage": "https://github.com/cloudmu/react-redux-starter-kit",
"dependencies": {
"bluebird": "^3.4.7",
"extensible-runtime": "^4.0.1",
"firebase": "^2.4.2",
"immutable": "^3.8.1",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.4",
"material-ui": "^0.16.7",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.2",
"react-router": "^2.2.4",
"react-tap-event-plugin": "^2.0.1",
"redux": "^3.6.0",
"redux-logger": "^2.7.4",
"redux-saga": "^0.14.3",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-jest": "^18.0.0",
"babel-loader": "^6.2.10",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-extensible-destructuring": "^4.0.1",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-polyfill": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.22.0",
"babel-register": "^6.22.0",
"babel-runtime": "^6.22.0",
"enzyme": "^2.7.0",
"enzyme-to-json": "^1.4.5",
"eslint": "^3.14.0",
"eslint-config-airbnb": "^14.0.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"file-loader": "^0.9.0",
"jest": "^18.1.0",
"raw-loader": "^0.5.1",
"react-addons-test-utils": "^15.4.2",
"react-test-renderer": "^15.4.2",
"redux-mock-store": "^1.2.1",
"redux-saga-testing": "^1.0.2",
"rimraf": "^2.5.4",
"stats-webpack-plugin": "^0.4.3",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2"
}
}