-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathpackage.json
88 lines (88 loc) · 2.48 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
82
83
84
85
86
87
88
{
"name": "react-sliding-pane",
"version": "7.3.0",
"description": "Full height sliding pane",
"main": "dist/react-sliding-pane.js",
"types": "dist/react-sliding-pane.d.ts",
"files": [
"dist/*"
],
"scripts": {
"build": "rollup -c rollup.config.js",
"docs": "rollup -c rollup-docs.config.js",
"lint": "eslint ./src/*.tsx",
"test": "jest",
"prepublishOnly": "echo \"BUILD BEFORE PUBLISH\" && yarn run build && yarn run lint && yarn test && tsc"
},
"registry": "https://registry.npmjs.org/",
"repository": {
"type": "git",
"url": "git+https://github.com/DimitryDushkin/sliding-pane.git"
},
"keywords": [
"react",
"sliding",
"pane",
"pane",
"modal",
"popup"
],
"tags": [
"react",
"sliding pane",
"dialog",
"popup"
],
"author": "Dmitrii Dushkin (dndushkin@gmail.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/DimitryDushkin/sliding-pane/issues"
},
"homepage": "https://github.com/DimitryDushkin/sliding-pane",
"dependencies": {
"prop-types": "^15.7.2",
"react-modal": "^3.14.3"
},
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-replace": "^3.0.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.0.2",
"@types/prop-types": "^15.7.4",
"@types/react": "^17.0.32",
"@types/react-dom": "^17.0.10",
"@types/react-modal": "^3.13.1",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"babel-jest": "^27.3.1",
"babel-plugin-typescript-to-proptypes": "^2.0.0",
"eslint": "^7",
"eslint-config-airbnb": "latest",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^25.2.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "latest",
"jest": "^27.3.1",
"postcss": "^8.3.11",
"prettier": "^2.4.1",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"rollup": "^2.58.0",
"rollup-plugin-postcss": "^4.0.1",
"typescript": "^4.4.4"
}
}