-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
36 lines (36 loc) · 954 Bytes
/
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
{
"name": "sample_react_library",
"version": "1.0.0",
"description": "This is a sample boilerplate for React Component Library",
"main": "dist/build.js",
"repository": {
"type": "git",
"url": "https://github.com/NGimhana/sample_react_component_library_boilerplate"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --mode production"
},
"keywords": [
"react",
"components"
],
"author": "Nadeeshan Gimhana",
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"babel-loader": "^8.0.5",
"webpack": "^4.28.3",
"webpack-cli": "^3.2.0"
},
"dependencies": {
"@material-ui/core": "^3.9.3",
"axios": ">=0.18.1",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"prop-types": "latest"
}
}