forked from bbbtech/storybook-formik
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 3.07 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
{
"name": "@bbbtech/storybook-formik",
"version": "3.0.0",
"description": "A storybook addon that allows you to use components in your stories that rely on Formik context and see internal Formik state in a panel.",
"repository": {
"type": "git",
"url": "https://github.com/bbbtech/storybook-formik"
},
"homepage": "https://bbbtech.github.io/storybook-formik/",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"typings": "dist/types/index.d.ts",
"scripts": {
"storybook": "storybook dev -p 6006",
"build-storybook": "rm -rf build-sb && storybook build",
"clean": "rm -rf dist",
"build": "npm run build:esm && npm run build:cjs",
"build:watch": "concurrently \"npm run build:esm -- --watch\" \"npm run build:cjs -- --watch\"",
"build:esm": "tsc --project tsconfig.esm.json",
"build:cjs": "tsc --project tsconfig.cjs.json",
"prepack": "npm run build",
"deploy": "npm run build-storybook && gh-pages -d build-sb",
"preversion": "npm run clean && npm run build && npm run deploy",
"postversion": "git push && git push --tags && npm publish",
"format": "prettier --write --trailing-comma es5 --single-quote 'src/**/*' 'README.MD'",
"format:check": "prettier --check --trailing-comma es5 --single-quote 'src/**/*' 'README.MD'",
"test": "jest"
},
"publishConfig": {
"access": "public"
},
"files": ["dist/**/*", "manager.js"],
"peerDependencies": {
"formik": "^1.0.0||^2.0.0",
"react": "*",
"react-dom": "*"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@babel/preset-typescript": "^7.26.0",
"@storybook/addon-essentials": "^8.4.3",
"@storybook/addon-links": "^8.4.3",
"@storybook/builder-vite": "^8.4.3",
"@storybook/components": "^8.4.3",
"@storybook/react": "^8.4.3",
"@storybook/react-vite": "^8.4.4",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/testing-library__jest-dom": "^5.14.9",
"concurrently": "^9.1.0",
"formik": "^2.4.6",
"gh-pages": "^6.2.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-textarea-autosize": "^8.5.5",
"storybook": "^8.4.3",
"typescript": "^5.6.3",
"yup": "^1.4.0"
},
"keywords": [
"storybook",
"react",
"formik",
"form",
"forms",
"storybook-addon",
"code",
"popular"
],
"author": "bhishp",
"license": "MIT",
"dependencies": {
"@storybook/core-events": "^8.4.3",
"@storybook/manager-api": "^8.4.3",
"@vitejs/plugin-react": "^4.3.3",
"jest-environment-jsdom": "^29.7.0",
"react-json-tree": "^0.19.0",
"ts-loader": "^9.5.1",
"vite": "^5.4.11"
},
"storybook": {
"icon": "https://pbs.twimg.com/profile_images/1148688127252471810/-UcA36Bw_400x400.png",
"displayName": "Formik"
}
}