This repository has been archived by the owner on Jun 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 224
/
Copy pathpackage.json
64 lines (64 loc) · 1.92 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
{
"name": "react-sidebar",
"version": "3.0.2",
"author": "Paulus Schoutsen <Paulus@PaulusSchoutsen.nl>",
"description": "A sidebar component for React.",
"main": "dist/react-sidebar.cjs.js",
"module": "dist/react-sidebar.esm.js",
"scripts": {
"example:dev": "webpack-dev-server --mode development",
"example:prod": "NODE_ENV=production webpack --mode production",
"build": "rollup -c",
"build:watch": "rollup -c --watch",
"lint": "eslint src example/src",
"format": "prettier --write '**/*.{js,json}'"
},
"keywords": [
"react",
"react-component",
"sidebar",
"drawer",
"navigation"
],
"repository": {
"type": "git",
"url": "git://github.com/balloob/react-sidebar.git"
},
"dependencies": {
"@babel/runtime": ">=7.0.0-beta.56",
"prop-types": "^15.6.2"
},
"peerDependencies": {
"react": ">=16.4.2",
"react-dom": ">=16.4.2"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.56",
"@babel/core": "^7.0.0-beta.56",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.56",
"@babel/plugin-transform-runtime": "^7.0.0-beta.56",
"@babel/preset-env": "^7.0.0-beta.56",
"@babel/preset-react": "^7.0.0-beta.56",
"babel-eslint": "^8.2.6",
"babel-loader": "^8.0.0-beta.4",
"babel-plugin-transform-react-remove-prop-types": "^0.4.14",
"babel-preset-es2015": "^6.24.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"html-webpack-plugin": "^3.2.0",
"prettier": "^1.14.0",
"react": ">=16.4.2",
"react-dom": ">=16.4.2",
"rollup": "^0.63.5",
"rollup-plugin-babel": "^4.0.0-beta.8",
"webpack": "^4.16.5",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5"
},
"license": "MIT"
}