forked from bbbtech/storybook-formik
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.88 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
{
"name": "storybook-formik",
"version": "2.4.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/bhishp/storybook-formik"
},
"homepage": "https://bhishp.github.io/storybook-formik/",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"typings": "dist/types/index.d.ts",
"scripts": {
"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",
"storybook": "start-storybook -p 6006",
"build-storybook": "rm -rf build-sb && build-storybook -o build-sb",
"format": "prettier --trailing-comma es5 --single-quote --write 'src/**/*' 'test/**/*' 'README.md' '/docs/**/*.md'",
"chromatic": "npx chromatic --project-token 81997269ab40",
"test": "jest"
},
"files": [
"dist/**/*",
"register.js"
],
"peerDependencies": {
"formik": "^1.0.0||^2.0.0",
"react": "*",
"react-dom": "*"
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@storybook/addon-essentials": "^6.4.21",
"@storybook/addon-links": "^6.4.21",
"@storybook/addons": "^6.4.21",
"@storybook/api": "^6.4.21",
"@storybook/components": "^6.4.21",
"@storybook/react": "^6.4.21",
"@storybook/testing-react": "^1.2.4",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.4",
"@types/jest": "^27.4.1",
"@types/node": "^12.12.14",
"@types/react": "^16.9.13",
"@types/react-dom": "^16.9.4",
"@types/react-syntax-highlighter": "^13.5.0",
"@types/yup": "^0.26.26",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.6",
"chromatic": "^5.6.3",
"concurrently": "^7.1.0",
"formik": "^2.0.6",
"gh-pages": "^2.1.1",
"jest": "^27.5.1",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"typescript": "^4.2.3",
"yup": "^0.32.11"
},
"keywords": [
"storybook",
"react",
"formik",
"form",
"forms",
"storybook-addon",
"code",
"popular"
],
"author": "bhishp",
"license": "MIT",
"dependencies": {
"react-json-tree": "^0.15.0"
},
"storybook": {
"icon": "https://pbs.twimg.com/profile_images/1148688127252471810/-UcA36Bw_400x400.png",
"displayName": "Formik"
}
}