-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.9 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
{
"name": "react-portal-hook",
"version": "1.0.8",
"description": "A small react portal library made with hooks",
"license": "MIT",
"keywords": [
"react",
"portal",
"portals",
"hook",
"hooks",
"modal",
"modals",
"notification",
"notifications",
"typescript"
],
"author": {
"name": "Etienne Martin",
"url": "http://etiennemartin.ca/"
},
"repository": {
"type": "git",
"url": "https://github.com/etienne-martin/react-portal-hook"
},
"bugs": {
"url": "https://github.com/etienne-martin/react-portal-hook/issues"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"dev": "concurrently 'webpack --mode development --watch' 'tsc --watch'",
"build": "concurrently 'webpack --mode production' 'tsc'",
"predev": "yarn cleanup",
"prebuild": "yarn cleanup",
"cleanup": "rm -rf ./dist"
},
"peerDependencies": {
"react": ">=16.9.0",
"react-dom": ">=16.12.0"
},
"dependencies": {
},
"devDependencies": {
"@babel/core": "7.5.0",
"@babel/plugin-proposal-optional-chaining": "7.7.5",
"@babel/plugin-transform-runtime": "7.7.6",
"@babel/preset-env": "7.5.5",
"@babel/preset-react": "7.0.0",
"@babel/preset-typescript": "7.3.3",
"@types/react": "16.9.16",
"@types/react-dom": "16.9.4",
"@types/webpack": "4.32.1",
"@typescript-eslint/eslint-plugin": "2.11.0",
"@typescript-eslint/parser": "2.11.0",
"babel-loader": "8.0.6",
"concurrently": "4.1.2",
"eslint": "6.7.2",
"eslint-config-prettier": "6.7.0",
"eslint-loader": "3.0.3",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "3.1.1",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-react-hooks": "^4.0.2",
"fork-ts-checker-webpack-plugin": "1.4.3",
"prettier": "1.19.1",
"typescript": "3.7.3",
"webpack": "4.36.0",
"webpack-cli": "3.3.5"
}
}