-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 964 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 964 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
36
{
"name": "@kode-kombat/fancy-button-package",
"version": "1.0.0",
"description": "This is my first custom button package",
"main": "dist/index.js",
"module": "dist/index.js",
"source": "src/index.jsx",
"scripts": {
"build":"webpack --mode production",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kode-kombat/fancy-button-package.git"
},
"author": "Kode Kombat",
"license": "ISC",
"peerDependencies": {
"react": "^17.0.2"
},
"devDependencies": {
"@babel/core": "^7.14.2",
"@babel/preset-env": "^7.14.2",
"@babel/preset-react": "^7.13.13",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"react": "^17.0.2",
"webpack": "^5.37.0",
"webpack-cli": "^4.7.0",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"prop-types": "^15.7.2",
"styled-components": "^5.3.0"
}
}