-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.75 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
{
"name": "use-mounted-effect",
"version": "1.0.5",
"description": "A React hook to run effect only if a component is mounted",
"license": "MIT",
"author": {
"name": "Félix Gourdeau"
},
"repository": {
"type": "git",
"url": "https://github.com/felixgourdeau/use-mounted-effect"
},
"main": "./index.js",
"types": "./index.d.ts",
"scripts": {
"build": "concurrently 'webpack --mode production' 'tsc'",
"prebuild": "yarn cleanup",
"cleanup": "rm -rf ./dist",
"test": "jest src --coverage --verbose --runInBand"
},
"peerDependencies": {
"react": ">=17.0.2",
"react-dom": ">=17.0.2"
},
"devDependencies": {
"@babel/core": "7.17.5",
"@babel/plugin-transform-runtime": "7.17.0",
"@babel/preset-env": "7.16.11",
"@babel/preset-react": "7.16.7",
"@babel/preset-typescript": "7.16.7",
"@testing-library/react": "^12.1.4",
"@testing-library/react-hooks": "^7.0.2",
"@types/jest": "^27.4.1",
"@types/react": "17.0.40",
"@types/react-dom": "17.0.13",
"@types/webpack": "5.28.0",
"@typescript-eslint/eslint-plugin": "5.14.0",
"@typescript-eslint/parser": "5.14.0",
"babel-jest": "^27.5.1",
"babel-loader": "8.2.3",
"circular-dependency-plugin": "5.2.2",
"concurrently": "7.0.0",
"eslint": "8.11.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.29.3",
"eslint-plugin-react-hooks": "4.3.0",
"eslint-webpack-plugin": "3.1.1",
"fork-ts-checker-webpack-plugin": "7.2.1",
"jest": "^27.5.1",
"prettier": "2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"terser-webpack-plugin": "5.3.1",
"typescript": "4.6.2",
"webpack": "5.70.0",
"webpack-cli": "4.9.2"
}
}