forked from alexkatz/react-tiny-popover
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 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
{
"name": "react-tiny-popover",
"version": "5.1.0",
"description": "A simple and highly customizable popover react higher order component with no other dependencies! Typescript friendly.",
"keywords": [
"react",
"popover",
"react-popover",
"popout",
"pop",
"out"
],
"repository": {
"type": "git",
"url": "https://github.com/alexkatz/react-tiny-popover.git"
},
"license": "MIT",
"author": "Alex Katz",
"main": "dist/Popover.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p . && yarn copy-types",
"clean": "rm -rf dist/",
"copy-types": "cp src/index.d.ts dist/index.d.ts",
"start-demo": "cd docs && yarn start",
"watch": "tsc-watch -p . --onSuccess 'yarn copy-types'"
},
"devDependencies": {
"@types/react": "^16.8.23",
"@types/react-dom": "^16.8.4",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^7.2.1",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.0.0",
"eslint-plugin-redux-saga": "^1.1.3",
"prettier": "^2.0.5",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"tsc-watch": "^4.0.0",
"typescript": "^3.7.2"
},
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0"
}
}