This repository has been archived by the owner on Aug 23, 2022. It is now read-only.
forked from microsoft/react-popout-component
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
60 lines (60 loc) · 1.59 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
{
"name": "react-portal-popout",
"private": false,
"version": "1.9.3",
"description": "Idiomatic React 16 component for popouts, updated because Microsoft doesn't give a damn about maintaining it anymore.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"start": "webpack-dev-server",
"build": "tsc -p tsconfig.build.json",
"watch": "tsc -w -p tsconfig.build.json"
},
"keywords": [
"react",
"react-portal",
"react-popout",
"popout",
"browser",
"electron"
],
"authors": [
"Microsoft",
"Ickerday <[email protected]> (https://github.com/Ickerday)"
],
"license": "MIT",
"dependencies": {
"react": ">=16.0.0",
"react-dom": ">=16.0.0"
},
"devDependencies": {
"@types/eslint": "^7.2.10",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/node": "^14.14.41",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"css-loader": "^5.2.2",
"eslint": "^7.24.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.2.1",
"style-loader": "^2.0.0",
"ts-loader": "^9.0.0",
"tslib": "^2.2.0",
"typescript": "^4.2.4",
"webpack": "^5.33.2",
"webpack-dev-server": "^3.11.2"
},
"peerDependencies": {
"react": ">=16.0.0",
"react-dom": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Ickerday/react-portal-popout"
}
}