-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 3.6 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
{
"name": "@tshio/frontend-components",
"author": "The Software House",
"license": "ISC",
"description": "TSH Frontend Components",
"private": false,
"version": "1.0.0",
"type": "module",
"publishConfig": { "access": "public" },
"files": [
"*"
],
"repository": {
"type": "git",
"url": "git://github.com/TheSoftwareHouse/tsh-frontend-components-catalog.git"
},
"scripts": {
"test": "jest --passWithNoTests",
"lint": "eslint \"./packages/**/*.{ts,tsx}\" && stylelint --allow-empty-input \"./packages/**/*.{css,pcss,scss}\" && echo \"lint success\"",
"lint:fix": "eslint --fix \"./packages/**/*.{ts,tsx}\" && stylelint --fix \"./packages/**/*.{css,pcss,scss}\" && echo \"lint success\"",
"prepare": "husky install",
"typecheck": "tsc --noEmit && echo \"typecheck success\"",
"prettier": "prettier . --fix",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"build-cli": "cd packages/cli && npm run build",
"init": "if [ -d packages/cli/dist ]; then node packages/cli/dist/index.js init; else npm run cli-build && node packages/cli/dist/index.js init; fi",
"copy": "if [ -d packages/cli/dist ]; then node packages/cli/dist/index.js copy; else npm run cli-build && node packages/cli/dist/index.js copy; fi"
},
"dependencies": {
"@emotion/react": "11.11.1",
"@emotion/styled": "11.11.0",
"@mui/icons-material": "^5.14.7",
"@mui/material": "5.14.5",
"@tanstack/react-query": "^4.33.0",
"@tanstack/react-query-devtools": "^4.33.0",
"@tanstack/react-table": "^8.9.3",
"axios": "^1.5.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-dropzone": "^14.2.3",
"react-hook-form": "^7.46.1",
"react-router-dom": "^6.15.0",
"react-slick": "^0.29.0",
"slick-carousel": "^1.8.1",
"react-responsive-carousel": "^3.2.23"
},
"devDependencies": {
"@commitlint/cli": "17.7.1",
"@commitlint/config-conventional": "17.7.0",
"@storybook/addon-essentials": "7.3.2",
"@storybook/addon-interactions": "7.3.2",
"@storybook/addon-links": "7.3.2",
"@storybook/addon-onboarding": "1.0.8",
"@storybook/blocks": "7.3.2",
"@storybook/react": "7.3.2",
"@storybook/react-vite": "7.3.2",
"@storybook/testing-library": "0.2.0",
"@types/react": "18.2.15",
"@types/react-dom": "18.2.7",
"@types/react-slick": "^0.23.10",
"@typescript-eslint/eslint-plugin": "6.0.0",
"@typescript-eslint/parser": "6.0.0",
"@vitejs/plugin-react": "4.0.3",
"eslint": "8.45.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-react-refresh": "0.4.3",
"eslint-plugin-storybook": "0.6.13",
"eslint-plugin-unused-imports": "3.0.0",
"husky": "8.0.3",
"jest": "^29.6.3",
"lint-staged": "14.0.1",
"msw": "^1.2.5",
"msw-storybook-addon": "^1.8.0",
"prettier": "3.0.2",
"rollup-plugin-node-polyfills": "0.2.1",
"storybook": "7.3.2",
"storybook-dark-mode": "3.0.1",
"stylelint": "15.10.3",
"stylelint-config-recommended": "13.0.0",
"ts-node": "^10.9.1",
"typescript": "5.0.2",
"vite": "4.4.5",
"vite-tsconfig-paths": "4.2.0"
},
"lint-staged": {
"packages/**/*.{js,jsx,ts,tsx,md}": [
"eslint --fix"
],
"packages/**/*.json": [
"prettier --write"
],
"packages/**/*.{css,pcss,scss}": [
"stylelint --fix",
"prettier --write"
]
},
"engines": {
"node": ">=16.19.0"
},
"msw": {
"workerDirectory": "public"
}
}