-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 2.83 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 2.83 KB
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
{
"homepage": "https://github.com/aloknecessary/react-progress-stepper-ts.git",
"name": "react-progress-stepper-ts",
"main": "dist/index",
"types": "dist/index",
"version": "2.1.0",
"private": false,
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/aloknecessary/react-progress-stepper-ts.git"
},
"dependencies": {
"styled-components": "^6.1.13"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"copy-font": "shx cp -r src/assets/fonts/montserrat.ttf dist/assets/fonts",
"compile": "npm run clean && tsc && npm run copy-font",
"test": "react-scripts test",
"eject": "react-scripts eject",
"storybook": "storybook dev -p 6006",
"clean": "rimraf dist",
"predeploy": "npm run build-storybook",
"build-storybook": "storybook build"
},
"eslintConfig": {
"extends": [
"react-app",
"plugin:storybook/recommended"
],
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"resolutions": {
"styled-components": "^5"
},
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@babel/preset-typescript": "^7.26.0",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-links": "^8.4.7",
"@storybook/blocks": "^8.4.7",
"@storybook/react": "^8.4.7",
"@storybook/react-vite": "^8.4.7",
"@storybook/test": "^8.4.7",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/styled-components": "^5.1.36",
"cross-env": "^7.0.3",
"eslint-plugin-storybook": "^0.11.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^6.0.1",
"shx": "^0.3.4",
"storybook": "^8.4.7",
"typescript": "^5.7.2",
"vite": "^6.0.5"
},
"peerDependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"keywords": [
"react",
"react-stepper",
"react-stepper-component",
"react-stepper-horizontal",
"react-stepper-ts",
"react-progress-horizontal",
"react-form-stepper",
"react-progress-stepper",
"react-progress-stepper-ts",
"react-form-stepper-vertical",
"react-form-stepper-horizontal",
"react-step",
"react-vertical-stepper",
"stepper",
"stepper-ts"
]
}