-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.36 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
{
"name": "maj-ui",
"version": "1.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "[email protected]:Mario-aj/maj-ui.git",
"author": "mario-aj <[email protected]>",
"bugs": {
"url": "https://github.com/Mario-aj/maj-ui/issues"
},
"homepage": "https://mario-aj.github.io/maj-ui/?path=/story/introduction--page",
"keywords": [
"ui",
"react",
"maj-ui",
"react-ui",
"storybook",
"components",
"design-system",
"react-components"
],
"files": [
"dist"
],
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/plugin-transform-runtime": "^7.17.12",
"@babel/preset-env": "^7.17.12",
"@babel/preset-flow": "^7.17.12",
"@babel/preset-react": "^7.17.12",
"@storybook/addon-actions": "^6.4.20",
"@storybook/addon-docs": "^6.3.6",
"@storybook/addon-essentials": "^6.4.20",
"@storybook/addon-interactions": "^6.4.20",
"@storybook/addon-links": "^6.4.20",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/react": "^6.4.20",
"@storybook/testing-library": "^0.0.9",
"@testing-library/dom": "^8.13.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@testing-library/user-event": "^14.2.0",
"@types/jest": "^27.5.1",
"@types/lodash": "^4.14.181",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.4",
"@types/react-icons": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"autoprefixer": "^10.4.5",
"babel-loader": "^8.2.4",
"eslint": "^8.12.0",
"eslint-plugin-react": "^7.29.4",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"postcss": "^8.4.12",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"tailwindcss": "^3.0.24",
"typescript": "^4.6.3"
},
"scripts": {
"dev": "start-storybook -p 6006",
"test": "jest --watch",
"test-unit": "jest --onlyChanged",
"test-coverage": "yarn run test --coverage",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx --fix",
"build": "build-storybook",
"build-tailwind": "npx tailwindcss -o ./dist/index.css --minify",
"tsc": "rm -rf dist && tsc && yarn build-tailwind"
},
"peerDependencies": {
"react": "^18.1.0",
"react-dom": "^18.1.0"
},
"dependencies": {
"lodash": "^4.17.21",
"react-icons": "^4.3.1"
}
}