-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.1 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@undermuz/use-form",
"version": "1.0.28",
"description": "React library for build forms",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"node": "./dist/index.cjs",
"require": "./dist/index.cjs",
"default": "./dist/index.cjs"
},
"sideEffects": false,
"type": "module",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"lint": "eslint && tsc --noEmit",
"build:tsup": "tsup",
"build": "npm run build:tsup",
"predeploy": "npm run lint && npm run test && npm run build",
"prepublishOnly": "npm run predeploy",
"storybook": "npm run storybook:start",
"storybook:start": "start-storybook -p 6006",
"storybook:build": "build-storybook",
"storybook:deploy": "gh-pages -d storybook-static",
"storybook:publish": "npm run storybook:build && npm run storybook:deploy"
},
"author": {
"name": "undermuz",
"email": "[email protected]",
"url": "https://github.com/undermuz"
},
"repository": {
"type": "git",
"url": "https://github.com/undermuz/use-form.git"
},
"license": "MIT",
"dependencies": {
"tslib": "^2.3.1",
"underscore": "^1.13.4"
},
"peerDependencies": {
"react": ">=17.0.2",
"react-dom": ">=17.0.2"
},
"devDependencies": {
"chakra-dayzed-datepicker": "^0.2.7",
"date-fns": "^2.29.3",
"dayzed": "^3.2.3",
"@babel/core": "^7.18.5",
"@babel/preset-env": "^7.18.2",
"@babel/preset-typescript": "^7.17.12",
"@chakra-ui/react": "^2.5.1",
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-interactions": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/builder-webpack5": "^6.5.16",
"@storybook/manager-webpack5": "^6.5.16",
"@storybook/react": "^6.5.16",
"@storybook/testing-library": "^0.0.13",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.4.3",
"@types/react": "^18.0.5",
"@types/react-syntax-highlighter": "^15.5.6",
"@types/underscore": "^1.11.4",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"babel-jest": "^28.1.1",
"esbuild-plugin-file-path-extensions": "^1.0.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-jest-dom": "^4.0.2",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.28.0",
"gh-pages": "^5.0.0",
"jest": "^29.4.3",
"jest-cli": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"prettier": "^2.8.4",
"react-syntax-highlighter": "^15.5.0",
"storybook": "^6.5.16",
"storybook-dark-mode": "^2.0.6",
"storybook-preset-less": "^1.1.3",
"stylelint-prettier": "^2.0.0",
"ts-loader": "^9.2.8",
"tsup": "^6.6.3",
"typescript": "^4.5.5"
},
"overrides": {
"@chakra-ui/react": {
"react": ">=17.0.2",
"react-dom": ">=17.0.2"
}
},
"keywords": [
"react",
"form",
"forms",
"use-form",
"hook"
]
}