-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.75 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
{
"name": "react-toolkit-ldv",
"private": false,
"author": {
"name": "Marcelo Ludovino",
"email": "[email protected]"
},
"version": "0.0.8",
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"chromatic": "npx chromatic --project-token=25e546a2543f",
"test": "vitest watch",
"test-no-watch": "vitest run",
"test-coverage": "vitest run --coverage",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,md}\""
},
"dependencies": {
"@fontsource/material-icons": "^4.5.4",
"@fontsource/roboto": "^4.5.8",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"peerDependencies": {
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@mui/material": "^5.12.3",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.12.3",
"@storybook/addon-actions": "^7.0.10",
"@storybook/addon-essentials": "^7.0.10",
"@storybook/addon-links": "^7.0.10",
"@storybook/preset-create-react-app": "^7.0.10",
"@storybook/react": "^7.0.10",
"@storybook/react-vite": "7.0.10",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.1",
"@types/jest-axe": "^3.5.5",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"@vitejs/plugin-react-swc": "^3.0.0",
"chromatic": "^6.17.4",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"eslint-plugin-storybook": "^0.6.12",
"jest-axe": "^7.0.1",
"jest-environment-jsdom": "^29.5.0",
"jest-transform-stub": "^2.0.0",
"jsdom": "^22.0.0",
"prettier": "^2.8.8",
"storybook": "^7.0.10",
"ts-jest": "^29.1.0",
"typescript": "^5.0.2",
"vite": "^4.3.2",
"vite-plugin-dts": "^2.3.0",
"vite-plugin-eslint": "^1.8.1",
"vitest": "^0.31.0"
},
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/my-lib.es.js",
"types": "./dist/index.d.ts"
},
"./dist/*": "./dist/*.js"
},
"readme": "ERROR: No README data found!",
"_id": "[email protected]"
}