-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.54 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
{
"name": "flickr-image-finder",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "webpack-dev-server --open",
"build": "webpack -p --config webpack.config.js --progress",
"test": "jest --watchAll --coverage",
"heroku-postbuild": "npm install && npm run build"
},
"mode": "development",
"devServer": {
"contentBase": "./dist",
"hot": true
},
"devtool": "inline-source-map",
"devDependencies": {
"@babel/core": "^7.8.7",
"@testing-library/jest-dom": "^5.1.1",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"babel-loader": "^8.0.6",
"babel-polyfill": "^6.26.0",
"babel-preset-stage-3": "^6.24.1",
"create-react-app": "^3.4.0",
"css-loader": "^3.4.2",
"jest": "^25.1.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.1",
"rc-pagination": "^2.0.1",
"react-scripts": "3.4.0",
"react-virtualized-image-measurer": "^0.4.0",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {
"express": "^4.17.1",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-redux": "^7.2.0",
"react-virtualized": "^9.21.2",
"redux": "^4.0.5",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}