-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 2.38 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
{
"name": "ReactReduxTemplate",
"version": "1.0.0",
"description": "React+Redux Template",
"main": "lib",
"scripts": {
"build": "cross-env NODE_ENV=production webpack --config configs/webpack.config.prod.js --progress --profile --colors",
"clean": "rimraf dist coverage test-reports",
"coverage": "cross-env ./node_modules/jest/bin/jest.js --coverage",
"lint": "eslint app/**",
"start": "node configs/devServer.js",
"test": "cross-env jest",
"test-dev": "cross-env jest --watch"
},
"jest": {
"moduleNameMapper": {
"^app(.*)$": "<rootDir>/app$1"
},
"notify": true,
"setupTestFrameworkScriptFile": "./configs/jasmine-setup.js",
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
"author": "Ryan Kim",
"devDependencies": {
"autoprefixer": "^7.0.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.0",
"babel-loader": "^7.0.0",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.4.0",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "^1.1.1",
"cross-env": "^4.0.0",
"css-loader": "^0.28.1",
"enzyme": "^2.8.2",
"enzyme-to-json": "^1.5.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"express": "^4.15.2",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"jasmine-reporters": "^2.2.1",
"jest": "^20.0.0",
"node-sass": "^4.5.2",
"postcss-loader": "^2.0.3",
"react-test-renderer": "^15.5.4",
"redux-mock-store": "^1.2.3",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.3",
"webpack": "^2.5.1",
"webpack-dev-middleware": "^1.10.2",
"webpack-hot-middleware": "^2.18.0",
"webpack-merge": "^4.1.0"
},
"dependencies": {
"classnames": "^2.2.5",
"history": "^4.6.1",
"lodash": "^4.17.4",
"prop-types": "^15.5.9",
"react": "^15.5.4",
"react-addons-css-transition-group": "^15.5.2",
"react-dom": "^15.5.4",
"react-redux": "^5.0.4",
"react-redux-popup": "^1.0.0",
"react-router-dom": "^4.1.1",
"react-router-redux": "^5.0.0-alpha.6",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"reselect": "^3.0.0"
}
}