-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
103 lines (103 loc) · 2.57 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
{
"name": "react-you-do-you",
"version": "3.1.0",
"private": true,
"homepage": "/react-you-do-you",
"scripts": {
"build": "tsc && vite build",
"lint": "eslint --max-warnings 0 './src/**/*.{ts,tsx}'",
"lint:fix": "eslint './src/**/*.{ts,tsx}' --fix",
"prepreview": "yarn build",
"preview": "vite preview",
"start": "vite",
"test": "vitest",
"test:ci": "CI=true vitest run",
"coverage": "vitest run --coverage",
"e2e": "yarn playwright test e2e/snapshot.spec.ts",
"postinstall": "husky install"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"eslintConfig": {
"extends": "react-app",
"overrides": [
{
"files": [
"**/*.ts?(x)"
],
"rules": {
"@typescript-eslint/semi": [
"error",
"never"
]
}
},
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.9",
"@mui/material": "^5.14.9",
"@mui/system": "^5.14.9",
"@reduxjs/toolkit": "^1.9.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "8.1.2"
},
"devDependencies": {
"@babel/core": "^7.22.19",
"@ladle/react": "^2.17.2",
"@playwright/test": "^1.38.0",
"@testing-library/dom": "^9.3.1",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.5.0",
"@types/jest": "^29.5.4",
"@types/node": "20.6.1",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@types/react-redux": "7.1.26",
"@types/sync-fetch": "^0.4.0",
"@vitejs/plugin-react": "^4.0.4",
"babel-loader": "^9.1.3",
"eslint": "^8.49.0",
"eslint-config-react-app": "^7.0.1",
"husky": "^8.0.3",
"jsdom": "^22.1.0",
"lint-staged": "14.0.1",
"node-fetch": "^3.3.2",
"prettier": "3.0.3",
"prettier-plugin-packagejson": "2.4.5",
"sync-fetch": "^0.5.2",
"typescript": "^4.9.5",
"vite": "^4.4.9",
"vite-plugin-checker": "^0.6.2",
"vitest": "^0.34.4"
},
"packageManager": "yarn@3.3.1"
}