-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
125 lines (125 loc) · 3.32 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
{
"name": "slash-clone",
"version": "0.1.0",
"private": true,
"dependencies": {
"@dnd-kit/core": "^5.0.1",
"@dnd-kit/sortable": "^6.0.0",
"@headlessui/react": "^1.4.3",
"@mswjs/data": "^0.8.4",
"@ngneat/falso": "^2.19.0",
"@tailwindcss/forms": "^0.4.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.13",
"@types/react": "^17.0.20",
"@types/react-dom": "^17.0.9",
"@types/react-router-dom": "5.3.2",
"axios": "^0.25.0",
"buffer": "^6.0.3",
"cypress-real-events": "^1.6.0",
"date-fns": "^2.28.0",
"downshift": "^6.1.7",
"framer-motion": "^5.6.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-query": "^3.34.8",
"react-responsive": "^9.0.0-beta.6",
"react-router": "5.2.1",
"react-router-dom": "5.3.0",
"react-scripts": "5.0.0",
"typescript": "^4.4.2",
"use-sound": "^4.0.1",
"web-vitals": "^2.1.0"
},
"scripts": {
"start": "GENERATE_SOURCEMAP=false react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"eject": "react-scripts eject",
"prettier": "prettier .",
"format:check": "yarn prettier --check",
"format:fix": "yarn prettier --write",
"lint": "eslint --ext .tsx,.ts .",
"prepare": "husky install",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public",
"flakiness": "for i in {1..15}; do yarn test src/modules/WorkTimer/tests/work-timer.test.tsx --silent --watchAll=false || (echo 'Failed after $i attempts' && break); done"
},
"eslintConfig": {
"plugins": [
"tailwindcss"
],
"extends": [
"react-app",
"react-app/jest",
"plugin:tailwindcss/recommended"
],
"ignorePatterns": [
"cypress"
],
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
],
"rules": {
"tailwindcss/migration-from-tailwind-2": "off"
},
"settings": {
"tailwindcss": {
"callees": [
"classnames",
"clsx",
"ctl",
"classNames"
]
}
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@storybook/addon-actions": "^6.4.12",
"@storybook/addon-essentials": "^6.4.12",
"@storybook/addon-links": "^6.4.12",
"@storybook/builder-webpack5": "^6.4.12",
"@storybook/manager-webpack5": "^6.4.12",
"@storybook/node-logger": "^6.4.12",
"@storybook/preset-create-react-app": "^4.0.0",
"@storybook/react": "^6.4.12",
"@testing-library/cypress": "^8.0.2",
"autoprefixer": "^10.4.2",
"cypress": "^9.3.1",
"eslint-plugin-tailwindcss": "^3.4.4",
"husky": ">=6",
"lint-staged": ">=10",
"msw": "^0.36.4",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"tailwindcss": "^3.0.13",
"webpack": "^5.65.0"
},
"msw": {
"workerDirectory": "public"
}
}