-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.3 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.3 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
{
"name": "react-web-breakpoints",
"version": "1.8.0",
"description": "Responsive design based on breakpoints.",
"main": "libs/index.js",
"homepage": "https://sagarpanda.github.io/react-web-breakpoints",
"repository": "https://github.com/sagarpanda/react-web-breakpoints.git",
"author": "Sagar Panda",
"license": "MIT",
"keywords": [
"react",
"responsive",
"breakpoints",
"breakpoint",
"component"
],
"files": [
"libs"
],
"scripts": {
"clean": "rm dist/bundle.js",
"build-libs": "rm -rf libs && babel src -d libs",
"build-dev": "webpack -d --mode development",
"build-prod": "webpack -p --mode production",
"start": "webpack-dev-server --hot --mode development"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.6",
"@babel/preset-env": "^7.8.6",
"@babel/preset-react": "^7.8.3",
"@hot-loader/react-dom": "^16.12.0",
"babel-loader": "^8.0.6",
"html-webpack-plugin": "^3.2.0",
"html-webpack-template": "^6.2.0",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"react-hot-loader": "^4.12.19",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {
"prop-types": "^15.7.2"
},
"peerDependencies": {
"react": "^16.8.0"
}
}