-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 2.03 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
{
"name": "react-helpful-hooks",
"version": "1.0.18",
"description": "A helpful set of react hooks",
"main": "index.js",
"pre-commit": [
"prettier:check",
"test"
],
"private": false,
"scripts": {
"start": "start-storybook -p 3000 -c .storybook",
"test": "jest --env=jsdom --coverage --forceExit --detectOpenHandles --verbose",
"test:watch": "jest --env=jsdom --watchAll=true",
"webpack": "webpack",
"build": "rm -rf dist && mkdir dist && cp ./package.json dist && cp ./README.md dist && webpack --mode production",
"prettier": "prettier",
"prettier:check": "npm run prettier -- --list-different \"src/**/*.{js,ts,tsx,html,scss}\"",
"format": "npm run prettier -- --write \"src/**/*.{js,ts,tsx,html,scss}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/danielisaacgeslin/react-helpful-hooks.git"
},
"keywords": [
"react.js",
"hooks",
"react",
"react-hooks",
"utils",
"UI"
],
"author": "Daniel Isaac Geslin",
"license": "MIT",
"bugs": {
"url": "https://github.com/danielisaacgeslin/react-helpful-hooks/issues"
},
"homepage": "https://github.com/danielisaacgeslin/react-helpful-hooks#readme",
"devDependencies": {
"@storybook/react": "^5.3.18",
"@testing-library/jest-dom": "^5.5.0",
"@testing-library/react": "^10.0.2",
"@testing-library/react-hooks": "^3.2.1",
"@testing-library/user-event": "^10.0.2",
"@types/jest": "^25.2.1",
"@types/node": "13.11.1",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.1.0",
"jest": "^25.4.0",
"pre-commit": "^1.2.2",
"prettier": "^2.0.4",
"react": "^16.13.1",
"react-docgen-typescript-loader": "^3.7.2",
"react-test-renderer": "^16.13.1",
"ts-jest": "^25.4.0",
"ts-loader": "^7.0.1",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"peerDependencies": {
"react": "^16.13.1"
}
}