-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.98 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.98 KB
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
{
"name": "reactcog",
"version": "0.1.0",
"private": true,
"dependencies": {
"dotenv": "^4.0.0",
"prop-types": "^15.5.0",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-redux": "^5.0.4",
"react-router-dom": "^4.1.2",
"redux": "^3.6.0",
"redux-saga": "^0.15.3",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"babel-core": "6.24.1",
"babel-loader": "^6.4.1",
"babel-plugin-dynamic-import-node": "^1.0.1",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-2": "^6.24.1",
"copy-webpack-plugin": "4.0.1",
"css-loader": "0.28.0",
"extract-text-webpack-plugin": "2.1.0",
"html-webpack-plugin": "2.28.0",
"jest": "19.0.2",
"less": "2.7.2",
"less-loader": "^4.0.3",
"node-less": "^1.0.0",
"react-hot-loader": "3.0.0-beta.6",
"react-scripts": "0.9.5",
"style-loader": "0.16.1",
"uglify-js-brunch": "^2.10.0",
"webpack": "2.4.1",
"webpack-combine-loaders": "2.0.3",
"webpack-dashboard": "0.3.0",
"webpack-dev-server": "2.4.2",
"webpack-merge": "4.1.0"
},
"scripts": {
"test": "jest",
"test:watch": "npm test -- --watch",
"start": "webpack-dashboard -t 'dash' -- webpack-dev-server --colors --inline --hot --config webpack/dev.js ",
"build": " webpack -p --config webpack/prod.js --display-error-details"
},
"jest": {
"testRegex": "\\-test\\.js$",
"transform": {
".*": "./node_modules/babel-jest"
},
"moduleFileExtensions": [
"js",
"json",
"jsx"
],
"moduleNameMapper": {
"^.*[.](jpg|JPG|gif|GIF|png|PNG|less|LESS|css|CSS)$": "EmptyModule"
},
"transformIgnorePatterns": [
"node_modules/(?!react-native|my-project|react-native-button)/"
],
"unmockedModulePathPatterns": [
"./node_modules/react",
"./node_modules/react-dom",
"./node_modules/react-addons-test-utils",
"./EmptyModule.js"
]
}
}