-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.31 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
{
"name": "@aspirity/easydev",
"description": "Library of React UI components based on styled-components made by the Aspirity team.",
"keywords": [
"react",
"components",
"easydev",
"aspirity",
"react-component",
"css-in-js",
"styled-components",
"styling"
],
"private": false,
"version": "0.0.6",
"type": "module",
"scripts": {
"build": "tsc && vite build",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"dev": "storybook dev",
"build-storybook": "storybook build",
"prettier-check": "prettier --check ./src",
"prettier-format": "prettier --write ./src",
"test": "vitest"
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"keen-slider": "^6.8.6",
"lodash": "^4.17.21",
"material-symbols": "^0.8.1",
"polished": "^4.2.2",
"react": "^17.x || 18.x",
"react-datepicker": "^4.16.0",
"react-dom": "^17.x || 18.x",
"react-highlight-words": "^0.20.0",
"react-input-mask": "^3.0.0-alpha.2",
"react-popper": "^2.3.0",
"react-select": "^5.7.4",
"smooth-scrollbar": "^8.8.4",
"smooth-scrollbar-react": "^2.4.1"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.21.8",
"@storybook/addon-actions": "^7.3.2",
"@storybook/addon-essentials": "^7.3.2",
"@storybook/addon-interactions": "^7.3.2",
"@storybook/addon-links": "^7.3.2",
"@storybook/addon-styling": "^1.3.7",
"@storybook/manager-api": "^7.3.2",
"@storybook/react": "^7.3.2",
"@storybook/react-vite": "^7.3.2",
"@storybook/testing-library": "^0.2.0",
"@storybook/theming": "^7.3.2",
"@testing-library/jest-dom": "^6.1.2",
"@testing-library/react": "^14.0.0",
"@types/node": "^20.1.5",
"@types/react": "^18.0.28",
"@types/react-datepicker": "^4.15.0",
"@types/react-dom": "^18.0.11",
"@types/react-highlight-words": "^0.16.4",
"@types/react-input-mask": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"@vitejs/plugin-react-swc": "^3.3.2",
"babel-loader": "^8.3.0",
"babel-plugin-styled-components": "^2.1.4",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"eslint-plugin-storybook": "^0.6.13",
"eslint-plugin-unused-imports": "^2.0.0",
"jest-styled-components": "^7.1.1",
"jsdom": "^22.1.0",
"lefthook": "^1.4.11",
"prettier": "2.8.8",
"storybook": "future",
"storybook-addon-themes": "^6.1.0",
"styled-components": "^6.0.7",
"typescript": "^5.0.2",
"vite": "^4.3.9",
"vite-plugin-dts": "^2.3.0",
"vitest": "^0.33.0"
},
"peerDependencies": {
"react": "^17.x || 18.x",
"react-dom": "^17.x || 18.x",
"styled-components": "6.x"
},
"files": [
"dist"
],
"main": "./dist/easydev.umd.js",
"module": "./dist/easydev.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/easydev.es.js",
"require": "./dist/easydev.umd.js",
"types": "./dist/index.d.ts"
},
"./dist/style.css": {
"import": "./dist/style.css",
"require": "./dist/style.css"
}
}
}