-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
128 lines (128 loc) · 3.64 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
{
"name": "@squidit/react-css",
"version": "1.2.16",
"scripts": {
"format": "prettier --write --parser typescript '**/*.{ts,tsx}'",
"lint": "eslint src --ext js,ts,tsx",
"build": "rm -rf dist && vite build",
"test": "vitest run",
"test-watch": "vitest",
"test:ui": "vitest --ui",
"coverage": "vitest run --coverage",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"pre-deploy": "npm run build-storybook",
"deploy-storybook": "npm run pre-deploy && touch ./storybook-static/.nojekyll"
},
"lint-staged": {
"*.{ts,tsx}": [
"npm run format",
"npm run lint",
"npm run test"
]
},
"description": "React CSS is an abstraction of the Squid CSS framework",
"type": "module",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/squidit/react-css.git"
},
"homepage": "https://react-css.squidit.com.br",
"keywords": [
"react",
"components",
"library",
"UI",
"user interface",
"Squid",
"design system",
"componentization",
"frontend",
"web",
"reusable",
"responsive",
"customizable",
"themes",
"modern",
"flexible",
"UI components",
"UI library",
"design components",
"corporate components"
],
"author": "Squid <[email protected]>",
"license": "MIT",
"devDependencies": {
"@chromatic-com/storybook": "^1.3.4",
"@squidit/css": "latest",
"@storybook/addon-actions": "^8.0.10",
"@storybook/addon-docs": "^8.0.10",
"@storybook/addon-essentials": "^8.0.10",
"@storybook/addon-interactions": "^8.0.10",
"@storybook/addon-links": "^8.0.10",
"@storybook/addon-mdx-gfm": "^8.0.10",
"@storybook/addon-onboarding": "^8.0.10",
"@storybook/addon-styling-webpack": "^1.0.0",
"@storybook/addon-themes": "^8.0.10",
"@storybook/addons": "^7.6.1",
"@storybook/blocks": "^8.0.10",
"@storybook/react": "^8.0.10",
"@storybook/react-vite": "^8.0.10",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.0.0",
"@types/react": "^18.2.31",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitejs/plugin-react-refresh": "^1.3.6",
"@vitest/coverage-v8": "^0.34.6",
"@vitest/ui": "^0.34.6",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-ts-react-important-stuff": "^3.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.15",
"husky": "^8.0.3",
"jsdom": "^22.1.0",
"lint-staged": "^15.0.2",
"prettier": "3.0.3",
"pretty-quick": "3.1.3",
"react": "^18.2.0",
"react-docgen-typescript-plugin": "^1.0.5",
"react-dom": "^18.2.0",
"react-router-dom": "^6.7.0",
"sass": "^1.69.4",
"storybook": "^8.0.10",
"storybook-addon-themes": "^6.1.0",
"storybook-dark-mode": "^4.0.1",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vite-plugin-dts": "^3.6.1",
"vitest": "^0.34.6"
},
"peerDependencies": {
"react": "^18.2.0"
},
"dependencies": {
"@storybook/test": "^8.0.10",
"chart.js": "^4.4.4",
"i18next": "^23.11.1",
"i18next-browser-languagedetector": "^7.2.1",
"i18next-http-backend": "^2.5.0",
"mp4box": "^0.5.2",
"react-i18next": "^14.1.0",
"react-phone-input-2": "^2.15.1",
"react-tooltip": "^5.26.4",
"rxjs": "^7.8.1",
"swiper": "^11.1.1"
}
}