forked from BenedicteGiraud/react-sliding-side-panel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.6 KB
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
{
"name": "react-sliding-side-panel",
"version": "1.0.14",
"description": "A sliding panel for React applications",
"main": "./lib/index.js",
"scripts": {
"clean": "rimraf lib",
"build:js": "babel -s inline -d lib src",
"build:css": "node scripts/buildCSS.js",
"build": "npm run clean && npm run build:js && npm run build:css",
"lint": "eslint src/*.jsx"
},
"files": [
"lib",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/BenedicteGiraud/react-sliding-side-panel.git"
},
"keywords": [
"react",
"npm",
"module",
"node",
"sliding",
"side",
"pane",
"panel",
"menu"
],
"author": "Benedicte Giraud",
"license": "MIT",
"bugs": {
"url": "https://github.com/BenedicteGiraud/react-sliding-side-panel/issues"
},
"homepage": "https://github.com/BenedicteGiraud/react-sliding-side-panel#readme",
"dependencies": {
"@babel/cli": "^7.8.4",
"clean-css": "^4.2.3",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-transition-group": "^4.3.0"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"babel-loader": "^8.1.0",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"fs": "0.0.1-security",
"mini-css-extract-plugin": "^0.9.0",
"rimraf": "^3.0.2",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
}
}