-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
133 lines (133 loc) · 3.54 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "formik-wizard-form",
"version": "2.1.0",
"description": "Create stepper forms over formik with ease",
"main": "dist/index.js",
"module": "dist/formik-wizard-form.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mjangir/formik-wizard-form.git"
},
"author": "Manish Jangir <[email protected]> (https://manishjangir.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mjangir/formik-wizard-form/issues"
},
"homepage": "http://formwizard.manishjangir.com",
"keywords": [
"formik",
"formik wizard",
"formik stepper form",
"formik multistep form",
"formik form wizard",
"form",
"wizard",
"react form wizard",
"react stepper form",
"stepper"
],
"scripts": {
"_postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"changeset": "changeset",
"release": "changeset publish",
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --env=jsdom",
"test:watch": "npm run test -- --watchAll",
"lint": "tsdx lint",
"lint:staged": "lint-staged",
"lint:commit": "commitlint",
"commit": "git-cz",
"format": "prettier --write \"src/**/*\" \"website/**/*.{ts,tsx,js,jsx,md,mdx}\"",
"cypress": "cypress run",
"cypress:open": "cypress open",
"size": "size-limit",
"analyze": "size-limit --why",
"prepublish": "yarn build",
"start:app": "yarn build && yarn --cwd . link && yarn --cwd node_modules/react link && yarn --cwd ./app link react formik-wizard-form && yarn --cwd ./app && yarn --cwd ./app run dev"
},
"size-limit": [
{
"path": "dist/formik-wizard-form.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/formik-wizard-form.esm.js",
"limit": "10 KB"
}
],
"peerDependencies": {
"formik": ">=2.0.1",
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.1",
"@changesets/cli": "^2.17.0",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@size-limit/preset-small-lib": "^5.0.3",
"@testing-library/cypress": "^8.0.1",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.0",
"@types/jest": "^27.0.1",
"@types/react": "^17.0.21",
"@types/react-dom": "^17.0.9",
"@types/testing-library__jest-dom": "^5.14.1",
"commitizen": "^4.2.4",
"cypress": "^8.4.1",
"cz-conventional-changelog": "^3.3.0",
"formik": "^2.2.9",
"husky": "^7.0.0",
"jest-environment-jsdom-sixteen": "^2.0.0",
"lint-staged": "^11.1.2",
"pinst": "^2.1.6",
"prettier": "^2.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typescript": "^4.4.3",
"yup": "^0.32.9"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"**/*.{ts,tsx,md,mdx,js,jsx}": [
"npm run format"
]
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{ts,tsx}"
],
"setupFilesAfterEnv": [
"<rootDir>/test/setupTests.ts"
],
"modulePaths": [
"<rootDir>/src"
],
"testPathIgnorePatterns": [
"cypress"
],
"testEnvironment": "jest-environment-jsdom-sixteen"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}