-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.16 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
{
"name": "hyperflex-ui",
"version": "1.3.4",
"type": "module",
"description": "",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/joaoromeira/hyperflex-ui/LICENSE"
}
],
"author": {
"name": "João Romeira",
"email": "vi.peres@icloud.com",
"url": "https://github.com/joaoromeira"
},
"scripts": {
"dev": "storybook dev -p 6006",
"build": "tsc && vite build",
"build-storybook": "storybook build",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"lint:fix": "eslint --fix 'src/**/*.{ts,tsx}'",
"format": "prettier --write src//**/*.{ts,tsx,css} --config ./.prettierrc",
"prepare": "husky install",
"commit": "npx git-cz"
},
"keywords": [],
"peerDependencies": {
"react": "^18.2.0 || >=17.x",
"react-dom": "^18.2.0 || >=17.x"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.1",
"@mui/lab": "^5.0.0-alpha.137",
"@mui/material": "^5.14.2",
"@mui/system": "^5.14.1",
"@mui/x-date-pickers": "^6.10.2",
"date-fns": "^2.30.0",
"styled-tools": "^1.7.2"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@storybook/addon-essentials": "^7.1.1",
"@storybook/addon-interactions": "^7.1.1",
"@storybook/addon-links": "^7.1.1",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/blocks": "^7.1.1",
"@storybook/client-api": "^7.1.1",
"@storybook/react": "^7.1.1",
"@storybook/react-vite": "^7.1.1",
"@storybook/testing-library": "^0.2.0",
"@types/react": "^18.2.16",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"@vitejs/plugin-react": "^4.0.3",
"babel-loader": "^9.1.3",
"chromatic": "^6.20.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-import-helpers": "^1.3.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.13",
"husky": "^8.0.3",
"lodash": "^4.17.21",
"prettier": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.1.1",
"storybook-dark-mode": "^3.0.1",
"typescript": "^5.1.6",
"vite": "^4.4.7",
"vite-plugin-dts": "^3.3.1",
"vite-plugin-linter": "^2.0.2",
"vite-tsconfig-paths": "^4.2.0"
},
"files": [
"dist"
],
"main": "./dist/hyperflex-ui.umd.js",
"module": "./dist/hyperflex-ui.es.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/hyperflex-ui.es.js",
"require": "./dist/hyperflex-ui.umd.js"
}
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && npx cz --hook || true",
"commit-msg": "commitlint -e $GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}