-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
84 lines (84 loc) · 2.44 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
{
"name": "react-redux-boilerplate",
"version": "0.0.1",
"description": "react-redux-boilerplate for rship",
"main": "index.js",
"scripts": {
"test": "$(npm bin)/jest"
},
"author": "Michael Chernobrov <[email protected]> (http://mrsum.ru)",
"license": "ISC",
"dependencies": {
"axios": "0.15.2",
"key-mirror": "1.0.1",
"koa": "2.0.0",
"react": "15.3.2",
"react-dom": "15.3.2",
"react-redux": "4.4.5",
"react-router": "2.8.1",
"react-router-redux": "4.0.6",
"redux": "3.6.0",
"redux-logger": "2.7.0",
"redux-promise-middleware": "4.1.0",
"redux-thunk": "2.1.0",
"serialize-javascript": "1.3.0"
},
"devDependencies": {
"autoprefixer": "6.5.0",
"axios-mock-adapter": "1.7.1",
"babel-core": "6.17.0",
"babel-jest": "16.0.0",
"babel-loader": "6.2.5",
"babel-plugin-module-alias": "1.6.0",
"babel-plugin-transform-runtime": "6.15.0",
"babel-preset-es2015": "6.16.0",
"babel-preset-react": "6.16.0",
"babel-preset-stage-0": "6.16.0",
"babel-runtime": "6.11.6",
"css-loader": "0.25.0",
"enzyme": "2.5.1",
"eslint": "3.7.1",
"eslint-config-rambler": "0.2.5",
"eslint-loader": "1.5.0",
"extract-text-webpack-plugin": "2.0.0-rc.2",
"file-loader": "0.9.0",
"html-webpack-plugin": "2.22.0",
"ignore-loader": "0.1.1",
"isomorphic-style-loader": "1.0.0",
"jest": "16.0.2",
"json-loader": "0.5.4",
"memory-fs": "0.3.0",
"postcss-loader": "^1.1.1",
"raw-loader": "0.5.1",
"react-addons-test-utils": "15.3.2",
"redux-mock-store": "1.2.1",
"style-loader": "0.13.1",
"stylus": "0.54.5",
"stylus-loader": "2.3.1",
"url-loader": "0.5.7",
"webpack": "2.2.1",
"webpack-dev-server": "2.2.1"
},
"jest": {
"moduleFileExtensions": [
"jsx",
"js",
"json"
],
"moduleNameMapper": {
"^.+\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/config/jest/FileStub.js",
"^.+\\.(css|styl)$": "<rootDir>/config/jest/CSSStub.js"
},
"setupFiles": [
"<rootDir>/config/jest/GlobalMocks.js"
],
"preprocessorIgnorePatterns": [
"node_modules/(?!react-native|tcomb-form-native|apsl-react-native-button|react|realm|whatwg-fetch)"
],
"testPathIgnorePatterns": [
"<rootDir>/(build|docs|node_modules)/"
],
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(js|jsx)$"
}
}