-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
54 lines (54 loc) · 1.52 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
{
"name": "react-test-demo",
"version": "0.1.0",
"private": true,
"jest": {
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
".*\\.(css|less|scss)$": "<rootDir>/__mocks__/styleMock.js"
},
"transform": {
"^.+\\.js$": "babel-jest"
}
},
"dependencies": {
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.3",
"react-router": "^3.0.2",
"redux": "^3.6.0",
"todomvc-app-css": "^2.1.0"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-eslint": "^6.1.2",
"babel-jest": "^19.0.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-2": "^6.24.1",
"babel-standalone": "^6.7.7",
"css-loader": "^0.23.1",
"enzyme": "^2.7.1",
"eslint": "^2.8.0",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-react": "^5.0.1",
"extract-text-webpack-plugin": "^2.0.0",
"html-webpack-plugin": "^2.24.0",
"jest": "^19.0.2",
"react-test-renderer": "^16.2.0",
"style-loader": "^0.16.1",
"webpack": "^2.2.0",
"webpack-dev-server": "2.2.0"
},
"scripts": {
"dev": "NODE_ENV=development webpack-dev-server --inline --progress --colors --port 3000 --host 0.0.0.0 --devtool source-map",
"test": "jest --colors",
"coverage": "jest --colors --coverage"
}
}