-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.15 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
{
"name": "react-github-repo-panel",
"version": "1.1.3",
"description": "A beautiful card that displays Github repository infos.",
"main": "lib/index.js",
"repository": "InfiniteSynthesis/react-github-repo-panel",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack serve --open development",
"build": "webpack --mode production",
"compile": "rm -rf lib && npx babel src -d lib --copy-files",
"deploy": "gh-pages -d example/dist",
"publish-demo": "npm run build && npm run deploy"
},
"author": "InfiniteSynthesis",
"keywords": [
"react",
"github-repo"
],
"license": "MIT",
"dependencies": {
"prop-types": "^15.7.2"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"babel-loader": "^8.2.2",
"css-loader": "^5.0.1",
"gh-pages": "^3.1.0",
"html-webpack-plugin": "^4.5.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"style-loader": "^2.0.0",
"webpack": "^5.11.0",
"webpack-cli": "^4.3.0",
"webpack-dev-server": "^3.11.0"
}
}