-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.67 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
{
"name": "react-redux-app-boilerplate",
"version": "1.0.0",
"description": "React + Redux app boilerplate ",
"main": "webpack.config.js",
"scripts": {
"dev": "./node_modules/.bin/webpack-dev-server --inline --hot",
"test": "jest",
"flow": "flow; test $? -eq 0 -o $? -eq 2"
},
"repository": {
"type": "git",
"url": "https://github.com/marcosaftertype/React-Redux-App-Boilerplate/"
},
"author": "Marcos Navarro",
"license": "MIT",
"dependencies": {
"react": "^15.3.2",
"react-addons-transition-group": "^15.3.2",
"react-dom": "^15.3.2",
"react-redux": "^4.4.5",
"redux": "^3.6.0",
"redux-logger": "^2.7.4",
"redux-thunk": "^2.1.0"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-jest": "^17.0.2",
"babel-loader": "^6.2.5",
"babel-plugin-react-html-attrs": "^2.0.0",
"babel-plugin-transform-class-properties": "^6.16.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"chai": "^3.5.0",
"css-loader": "^0.25.0",
"enzyme": "^2.6.0",
"flow-bin": "^0.35.0",
"flow-status-webpack-plugin": "^0.1.7",
"jest": "^17.0.3",
"json-loader": "^0.5.4",
"mocha": "^3.1.2",
"node-sass": "^3.13.0",
"postcss-loader": "^1.1.1",
"react-addons-test-utils": "^15.4.1",
"react-test-renderer": "^15.4.1",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.1"
},
"jest": {
"moduleNameMapper": {
"\\.(css|scss)$": "<rootDir>/__mocks__/styleMock.js"
}
}
}