-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.72 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
{
"name": "PokemonApp",
"version": "1.0.0",
"description": "Application created to test the module mock feature of Jest",
"main": "index.js",
"jest": {
"setupFiles": [
"<rootDir>/jest.init.js"
]
},
"scripts": {
"start": "webpack-dev-server --progress --config config/webpack.dev.js",
"build:dev": "webpack --progress --config config/webpack.dev.js",
"build:prod": "webpack --progress --config config/webpack.prod.js",
"watch": "jest --watch --verbose",
"test": "jest"
},
"dependencies": {
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/preset-env": "^7.6.0",
"@babel/preset-react": "^7.0.0",
"axios": "^0.19.0",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-polyfill": "^6.26.0",
"babel-regenerator-runtime": "^6.5.0",
"clean-webpack-plugin": "^1.0.1",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^2.1.1",
"file-loader": "^4.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.9.0",
"mini-css-extract-plugin": "^0.7.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"prop-types": "^15.7.2",
"raf": "^3.4.1",
"react": "^16.8.6",
"react-devtools": "^4.6.0",
"react-dom": "^16.8.6",
"react-hot-loader": "^4.9.0",
"react-redux": "^7.2.0",
"react-router-dom": "^5.1.2",
"redux": "^4.0.5",
"redux-actions": "^2.6.5",
"redux-devtools-extension": "^2.13.8",
"redux-saga": "^1.1.3",
"style-loader": "^0.23.1",
"webpack": "^4.33.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.3",
"webpack-dev-server": "^3.7.1",
"webpack-merge": "^4.2.1",
"whatwg-fetch": "^3.0.0"
}
}