-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.75 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.75 KB
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
{
"name": "game-hub",
"private": true,
"version": "1.0.0",
"scripts": {
"dev": "vite",
"build": "tsc -p tsconfig.prod.json && vite build",
"preview": "vite preview",
"test:ci": "vitest run",
"test:watch": "vitest watch --ui",
"test:coverage": "vitest run --coverage",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"type-check": "tsc --project tsconfig.json --pretty --noEmit",
"lint": "eslint --ext js,jsx,ts,tsx --fix --ignore-path .gitignore .",
"format": "prettier --ignore-path .gitignore \"src/**/*.+(ts|js|tsx|json|md)\" --write",
"stylelint": "stylelint **/*.{css,scss,tsx,js} --fix",
"postinstall": "husky install"
},
"dependencies": {
"@chakra-ui/react": "^2.8.1",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@tanstack/react-query": "^4.35.3",
"axios": "^1.5.0",
"cypress": "^13.2.0",
"cypress-vite": "^1.4.2",
"framer-motion": "^10.15.0",
"ms": "^2.1.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.10.1",
"react-infinite-scroll-component": "^6.1.0",
"react-router-dom": "^6.14.2",
"zustand": "^4.4.1"
},
"devDependencies": {
"@babel/core": "^7.22.20",
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@mdx-js/react": "^2.3.0",
"@storybook/addon-actions": "^7.4.3",
"@storybook/addon-docs": "^7.4.3",
"@storybook/addon-essentials": "^7.4.3",
"@storybook/addon-interactions": "^7.4.3",
"@storybook/addon-links": "^7.4.3",
"@storybook/blocks": "^7.4.3",
"@storybook/builder-vite": "^7.4.3",
"@storybook/react": "^7.4.3",
"@storybook/react-vite": "^7.4.3",
"@storybook/testing-library": "^0.2.1",
"@tanstack/react-query-devtools": "^4.35.3",
"@testing-library/cypress": "^10.0.1",
"@testing-library/dom": "^9.3.3",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1",
"@types/node": "^20.6.3",
"@types/react": "^18.2.22",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"@vitejs/plugin-react": "^4.0.4",
"@vitest/coverage-c8": "^0.33.0",
"@vitest/ui": "^0.34.5",
"babel-loader": "^9.1.3",
"babel-plugin-named-exports-order": "^0.0.2",
"c8": "^8.0.1",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-css-import-order": "^1.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.14",
"eslint-plugin-testing-library": "^5.11.1",
"husky": "^8.0.3",
"jest-axe": "^8.0.0",
"jsdom": "^22.1.0",
"lint-staged": "^13.2.3",
"msw": "^1.2.3",
"prettier": "^3.0.1",
"prettier-stylelint": "^0.4.2",
"prop-types": "^15.8.1",
"storybook": "^7.2.1",
"stylelint": "^15.10.3",
"stylelint-a11y": "^1.2.3",
"stylelint-config-standard": "^34.0.0",
"stylelint-order": "^6.0.3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vite-plugin-svgr": "^4.0.0",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "^0.34.5"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"packageManager": "yarn@3.6.3",
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}