-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.64 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
{
"name": "wizard-step-indicator-react",
"version": "1.0.1",
"description": "Wizard Step Indicator for React",
"type": "module",
"main": "./src/index",
"types": "./dist/esm/index",
"exports": {
"import": "./dist/esm/index",
"require": "./dist/cjs/index"
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "jest ./tests/index.spec.tsx",
"build": "rollup -c",
"commit": "git-cz",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/shadiabuhilal/wizard-step-indicator-react.git"
},
"keywords": [
"react",
"step",
"indicator",
"js",
"next",
"module",
"commonJS",
"cjs"
],
"author": "Shadi Abu Hilal <[email protected]> (http://github.com/shadiabuhilal)",
"license": "MIT",
"bugs": {
"url": "https://github.com/shadiabuhilal/wizard-step-indicator-react/issues"
},
"homepage": "https://github.com/shadiabuhilal/wizard-step-indicator-react#readme",
"dependencies": {
"classnames": ">=2.*.*",
"csstype": "^3.1.3"
},
"peerDependencies": {
"react": ">=18.*.*"
},
"devDependencies": {
"@jest/types": "^29.6.3",
"@rollup/plugin-commonjs": "^25.0.7",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/release-notes-generator": "^12.1.0",
"@storybook/addon-essentials": "^7.6.7",
"@storybook/addon-interactions": "^7.6.7",
"@storybook/addon-links": "^7.6.7",
"@storybook/addon-onboarding": "^1.0.10",
"@storybook/blocks": "^7.6.7",
"@storybook/react": "^7.6.7",
"@storybook/react-vite": "^7.6.7",
"@storybook/test": "^7.6.7",
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^14.1.2",
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.55.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-storybook": "^0.6.15",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prop-types": "^15.8.1",
"react": ">=18.*.*",
"react-dom": ">= 18.*.*",
"rollup": "^4.6.1",
"rollup-plugin-typescript2": "^0.36.0",
"semantic-release": "^22.0.10",
"storybook": "^7.6.7",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}