-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
81 lines (81 loc) · 2.37 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "react-side-bar",
"version": "1.0.4",
"description": "React Side Bar Component",
"homepage": "http://mschez.github.io/react-side-bar",
"author": {
"name": "Miguel Sánchez",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/mschez/react-side-bar.git"
},
"bugs": {
"url": "https://github.com/mschez/react-side-bar/issues",
"email": "[email protected]"
},
"main": "./dist/SideBar.js",
"engines": {
"node": "12.x",
"npm": "6.x"
},
"scripts": {
"build:demo": "./node_modules/.bin/webpack --config webpack.config.demo.js --colors --progress",
"build:prod": "./node_modules/.bin/webpack --config webpack.config.prod.js --colors --progress",
"dev": "webpack-dev-server --config webpack.config.dev.js --hot --inline",
"build:all": "npm run build:demo && npm run build:prod",
"postversion": "git push && git push --tags && npm publish",
"version": "auto-changelog -p && git add CHANGELOG.md && npm run build:all && git add -A ./dist/ ./public"
},
"keywords": [
"bar",
"component",
"menu",
"navigationbar",
"navigation-bar",
"react",
"react-component",
"side",
"sidebar",
"side-bar",
"slide"
],
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"dependencies": {
"decouple": "^1.0.1",
"prop-types": "^15.7.2"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.6",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@babel/register": "^7.9.0",
"@hot-loader/react-dom": "^16.13.0",
"auto-changelog": "^2.0.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"eslint": "^7.0.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-import-resolver-webpack": "^0.12.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.0",
"react": "^16.8.0",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.8.0",
"react-hot-loader": "4.12.21",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "3.11.0",
"webpack-merge": "^4.2.2"
},
"license": "MIT"
}