-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.96 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
{
"name": "react-icon-layout",
"description": "Everything you need to manage icon-to-text layouts.",
"version": "3.0.0",
"license": "MIT",
"author": "Michael Schwobe <[email protected]> (https://michaelschwobe.com)",
"repository": "github:michaelschwobe/react-icon-layout",
"bugs": "https://github.com/michaelschwobe/react-icon-layout/issues",
"homepage": "https://github.com/michaelschwobe/react-icon-layout#readme",
"keywords": [
"react",
"icon",
"layout",
"settings",
"hooks"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./styles.css": {
"require": "./styles.css",
"import": "./styles.css"
}
},
"files": [
"dist",
"src",
"styles.css"
],
"scripts": {
"clean": "rimraf coverage dist storybook-static yarn-error.log *.tgz",
"typecheck": "tsc --noEmit --pretty --skipLibCheck",
"lint": "eslint . --ext=.js,.jsx,.ts,.tsx",
"format": "prettier . --write --ignore-unknown",
"test": "vitest",
"test:ci": "vitest run --coverage",
"dev": "start-storybook -p 6006",
"build": "tsup"
},
"peerDependencies": {
"react": ">=17.0.2 <18"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/eslint-parser": "^7.17.0",
"@babel/preset-react": "^7.16.7",
"@storybook/addon-a11y": "^6.4.22",
"@storybook/addon-actions": "^6.4.22",
"@storybook/addon-essentials": "^6.4.22",
"@storybook/addon-interactions": "^6.4.22",
"@storybook/addon-links": "^6.4.22",
"@storybook/builder-vite": "^0.1.29",
"@storybook/react": "^6.4.22",
"@storybook/testing-library": "^0.0.9",
"@testing-library/dom": "^8.13.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.4",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.5.0",
"@types/eslint": "^8.4.1",
"@types/node": "^17.0.23",
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.14",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"@vitejs/plugin-react": "^1.3.0",
"babel-loader": "^8.2.4",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.1.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-sonarjs": "^0.13.0",
"eslint-plugin-storybook": "^0.5.10",
"eslint-plugin-testing-library": "^5.2.1",
"happy-dom": "^2.55.0",
"prettier": "^2.6.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"tsup": "^5.12.4",
"typescript": "^4.6.3",
"vite": "^2.9.1",
"vitest": "^0.9.0"
},
"engines": {
"node": ">=14"
}
}