forked from AxisCommunications/react-hooks-shareable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.46 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-hooks-shareable",
"version": "1.11.0",
"description": "A list of useful React hooks that can be reused across different projects",
"main": "dist/index.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/AxisCommunications/react-hooks-shareable.git"
},
"homepage": "https://github.com/AxisCommunications/react-hooks-shareable",
"license": "MIT",
"engines": {
"node": ">=10.11.0",
"yarn": ">=1.12.3"
},
"scripts": {
"lint": "yarn tsc && yarn lint:ts && yarn prettier:check",
"lint:fix": "yarn lint:ts --fix && yarn prettier:fix",
"lint:ts": "eslint --ext '.ts,.tsx' . --cache",
"test": "jest",
"prettier:check": "prettier --check '{**/*.{js,ts,jsx,tsx,md},.gitlab-ci.yml,README.md,tsconfig.json,package.json}'",
"prettier:fix": "prettier --write '{**/*.{js,ts,jsx,tsx,md},.gitlab-ci.yml,README.md,tsconfig.json,package.json}' --fix --loglevel silent",
"build": "yarn tsc --emitDeclarationOnly --noEmit false && webpack --config webpack.config.js",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"release": "yarn version apply && bash sbin/release.sh"
},
"dependencies": {
"@juggle/resize-observer": "3.2.0"
},
"devDependencies": {
"@babel/core": "7.12.10",
"@babel/plugin-proposal-class-properties": "7.12.1",
"@babel/plugin-proposal-object-rest-spread": "7.12.1",
"@babel/preset-env": "7.12.11",
"@babel/preset-react": "7.12.10",
"@babel/preset-typescript": "7.12.7",
"@jest/globals": "26.6.2",
"@testing-library/react-hooks": "5.0.3",
"@types/gtag.js": "0.0.4",
"@types/react": "17.0.0",
"@types/testing-library__react-hooks": "3.4.1",
"@typescript-eslint/eslint-plugin": "4.14.1",
"@typescript-eslint/parser": "4.14.1",
"babel-loader": "8.2.2",
"eslint": "7.18.0",
"eslint-config-typescript-shareable": "0.28.0",
"eslint-import-resolver-node": "0.3.4",
"eslint-plugin-functional": "3.2.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-react-hooks": "4.2.0",
"jest": "26.6.3",
"prettier": "2.2.1",
"react": "17.0.1",
"react-test-renderer": "17.0.1",
"semver": "7.3.4",
"typescript": "4.1.3",
"webpack": "5.17.0",
"webpack-cli": "4.4.0"
},
"peerDependencies": {
"react": "^17.0.1"
},
"resolutions": {
"dot-prop": "5.2.0"
}
}