-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.41 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.41 KB
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
72
{
"name": "react-form-state-hooks",
"version": "0.3.2",
"description": "Manage your React form state with hooks and helpful components.",
"main": "index.js",
"scripts": {
"test": "jest --coverage --collectCoverageFrom=src/**",
"build": "shx rm -rf dist && rollup -c",
"lint": "eslint . --ext ts,tsx,js,jsx",
"storybook": "start-storybook -p 6006 --ci",
"build-storybook": "build-storybook",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bvalyou/react-form-state-hooks.git"
},
"keywords": [],
"author": "Benjamin Valyou",
"license": "MIT",
"bugs": {
"url": "https://github.com/bvalyou/react-form-state-hooks/issues"
},
"homepage": "https://github.com/bvalyou/react-form-state-hooks#readme",
"peerDependencies": {
"react": "*"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/plugin-proposal-object-rest-spread": "^7.14.4",
"@babel/plugin-proposal-optional-chaining": "^7.14.2",
"@babel/preset-env": "^7.14.4",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@material-ui/core": "^4.11.4",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-typescript": "^8.2.1",
"@storybook/addon-actions": "^5.3.18",
"@storybook/addon-links": "^5.3.18",
"@storybook/addons": "^5.3.18",
"@storybook/react": "^5.3.18",
"@testing-library/react": "^11.2.7",
"@testing-library/react-hooks": "^3.7.0",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"eslint": "^7.28.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"prettier": "^2.3.1",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"rollup": "^2.50.6",
"rollup-plugin-dts": "^2.0.1",
"shx": "^0.3.3",
"standard-version": "^9.3.0",
"ts-loader": "^8.3.0",
"typescript": "^4.3.2"
}
}