-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
81 lines (81 loc) · 2.29 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
{
"name": "react-form-stepper",
"description": "React stepper component for multiple step forms",
"version": "2.0.3",
"repository": {
"type": "git",
"url": "git+https://github.com/M0kY/react-form-stepper.git"
},
"author": "M0kY",
"license": "MIT",
"bugs": {
"url": "https://github.com/M0kY/react-form-stepper/issues"
},
"homepage": "https://github.com/M0kY/react-form-stepper#readme",
"keywords": [
"react",
"component",
"stepper",
"form",
"step",
"wizard"
],
"main": "dist/index.js",
"module": "dist/react-form-stepper.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist",
"start": "tsdx watch",
"build": "tsdx build --format cjs,esm,umd",
"test": "tsdx test --coverage",
"lint": "tsdx lint",
"gh-pages:clean": "rimraf example/dist",
"gh-pages:build": "npm run build && cd example && npm i && npm run build --prefix",
"gh-pages": "npm run gh-pages:clean && npm run gh-pages:build",
"prepare": "husky install"
},
"peerDependencies": {
"react": ">=16"
},
"devDependencies": {
"@commitlint/cli": "15.0.0",
"@commitlint/config-conventional": "15.0.0",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/git": "10.0.1",
"@semantic-release/npm": "9.0.1",
"@semantic-release/release-notes-generator": "10.0.3",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@types/color": "3.0.3",
"@types/jest": "^27.5.1",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.5",
"eslint": "8.57.0",
"eslint-config-prettier": "8.10.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "8.0.3",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.33.0",
"eslint-plugin-react-hooks": "4.6.0",
"gh-pages": "3.2.3",
"husky": "7.0.4",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"rimraf": "3.0.2",
"semantic-release": "19.0.2",
"tsdx": "^0.14.0",
"tslib": "2.5.0",
"typescript": "^4.7.2"
},
"dependencies": {
"clsx": "^1.1.1",
"color": "^3.2.1",
"react-jss": "^10.9.1-alpha.2"
}
}