-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.2 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
{
"name": "@react-hive/honey-layout",
"version": "3.1.0",
"description": "",
"keywords": [
"react",
"layout",
"theme",
"responsive"
],
"homepage": "https://react-honey-layout.netlify.app",
"bugs": {
"url": "https://github.com/React-Hive/honey-layout/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/React-Hive/honey-layout.git"
},
"author": "Mykhailo Aliinyk <m.aliynik@gmail.com>",
"license": "MIT",
"scripts": {
"start": "vite serve --config vite-docs.config.ts",
"test": "jest --collect-coverage",
"build:lib": "vite build --config vite-lib.config.ts",
"build:docs": "vite build --config vite-docs.config.ts"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"peerDependencies": {
"@mdx-js/react": "3.1.0",
"react": ">=18.0.0",
"react-dom": ">=18.0.0",
"react-router-dom": "6.28.0",
"styled-components": "6.1.13",
"highlight.js": "11.11.1"
},
"dependencies": {
"@emotion/is-prop-valid": "1.3.1",
"lodash.merge": "4.6.2",
"lodash.debounce": "4.0.8",
"csstype": "3.1.3"
},
"devDependencies": {
"@testing-library/react": "16.1.0",
"@types/jest": "29.5.14",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@types/react": ">=18.0.0",
"@types/react-dom": ">=18.0.0",
"@types/mdx": "2.0.13",
"@types/lodash.merge": "4.6.9",
"@types/lodash.debounce": "4.0.9",
"@vitejs/plugin-react": "4.3.4",
"@mdx-js/rollup": "3.1.0",
"eslint": "8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "5.2.1",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"prettier": "3.4.2",
"ts-jest": "29.2.5",
"typescript": "5.7.2",
"vite": "6.0.6",
"vite-plugin-dts": "4.4.0",
"vite-plugin-checker": "0.8.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"testMatch": [
"**/src/**/__tests__/**/*.tsx"
]
},
"browserslist": [
"defaults",
"not IE 11"
]
}