-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
132 lines (132 loc) · 3.85 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "@ynput/ayon-react-components",
"private": false,
"version": "0.0.0-dev",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/ynput/ayon-react-components.git"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"lint:fix": "eslint --fix 'src/**/*.{jsx,ts,tsx}'",
"format": "prettier --write src/**/*.{js,jsx} --config ./.prettierrc",
"prepare": "husky install",
"storybook": "storybook dev -p 6006",
"build-storybook": "NODE_OPTIONS=--max_old_space_size=4096 storybook build",
"serve-storybook": "npx http-server ./storybook-static"
},
"devDependencies": {
"@dnd-kit/core": "^6.0.8",
"@storybook/addon-actions": "^7.0.25",
"@storybook/addon-essentials": "^7.0.25",
"@storybook/addon-interactions": "^7.0.25",
"@storybook/addon-links": "^7.0.25",
"@storybook/addon-storysource": "^7.0.25",
"@storybook/addon-styling": "^1.3.2",
"@storybook/blocks": "^7.0.25",
"@storybook/manager-api": "^7.0.25",
"@storybook/node-logger": "^7.0.25",
"@storybook/react": "^7.0.25",
"@storybook/react-vite": "^7.0.25",
"@storybook/testing-library": "^0.2.0",
"@storybook/theming": "^7.0.25",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/leaflet": "^1.7.11",
"@types/node": "^16.11.43",
"@types/react": "^18.0.34",
"@types/react-datepicker": "^4.11.0",
"@types/react-dom": "^18.0.11",
"@types/react-leaflet": "^2.8.2",
"@types/styled-components": "^5.1.34",
"@vitejs/plugin-react": "^2.2.0",
"babel-plugin-named-exports-order": "^0.0.2",
"babel-plugin-styled-components": "^2.0.7",
"clsx": "^2.0.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-storybook": "^0.6.12",
"husky": "^8.0.1",
"leaflet": "^1.8.0",
"lint-staged": "^13.0.3",
"match-sorter": "^6.3.4",
"material-symbols": "^0.17.4",
"overlayscrollbars": "^2.3.2",
"overlayscrollbars-react": "^0.5.2",
"postcss": "^8.4.21",
"prettier": "^2.7.1",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-datepicker": "^4.11.0",
"react-dom": "^18.2.0",
"react-hooks": "^1.0.1",
"react-leaflet": "^4.2.1",
"react-scripts": "5.0.1",
"sass": "^1.77.0",
"sass-loader": "^13.2.2",
"storybook": "^7.0.25",
"styled-components": "^6.1.12",
"typescript": "^5.0.4",
"vite": "^3.2.0",
"vite-plugin-dts": "^2.3.0",
"vite-plugin-linter": "^1.2.0",
"web-vitals": "^2.1.4"
},
"peerDependencies": {
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"react": "^18.2.0",
"react-datepicker": "^4.11.0",
"react-dom": "^18.2.0",
"sass": "^1.61.0",
"styled-components": "^5.3.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"yarn eslint",
"yarn format"
]
},
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/ayon-react-components.es.js",
"umd": "./dist/ayon-react-components.umd.js"
},
"./package.json": "./package.json",
"./dist/style.css": {
"import": "./dist/style.css",
"require": "./dist/style.css"
}
},
"main": "dist/ayon-react-components.umd.js",
"module": "dist/ayon-react-components.es.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"resolutions": {
"jackspeak": "2.1.1"
},
"dependencies": {
"short-uuid": "^5.2.0"
}
}