-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 919 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 919 Bytes
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
{
"name": "webpack-react",
"version": "1.0.0",
"description": "",
"main": "webpack.config.js",
"scripts": {
"build": "webpack --mode=development",
"start": "webpack-dev-server --mode=development"
},
"author": "Muhammad Melxi",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@babel/preset-react": "^7.8.3",
"babel-loader": "^8.0.6",
"browser-sync-webpack-plugin": "^2.2.2",
"css-loader": "^3.4.2",
"file-loader": "^5.1.0",
"style-loader": "^1.1.3",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {
"browser-sync": "^2.26.7",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-slick": "^0.25.2",
"reset-css": "^5.0.1",
"slick-carousel": "^1.8.1",
"styled-components": "^5.0.1"
}
}