-
-
Notifications
You must be signed in to change notification settings - Fork 132
/
Copy pathpackage.json
116 lines (116 loc) · 3.11 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
{
"name": "pawternity-hub",
"version": "0.2.0",
"license": "MIT",
"engines": {
"npm": ">=8.0.0",
"node": ">=16.0.0"
},
"dependencies": {
"@heroicons/react": "v2",
"@supabase/supabase-js": "^1.35.7",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.2.0",
"@types/node": "^18.11.0",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"daisyui": "^2.49.0",
"jwt-decode": "^3.1.2",
"postcode-validator": "^3.7.0",
"react": "^18.2.0",
"react-country-region-selector": "^3.6.1",
"react-daisyui": "^3.0.2",
"react-dom": "^18.2.0",
"react-hook-form": "^7.45.1",
"react-icons": "^4.8.0",
"react-router-dom": "^6.4.2",
"react-scripts": "^5.0.1",
"react-supabase": "^0.2.0",
"react-toastify": "^9.0.8",
"swr": "^1.3.0",
"typescript": "^4.9.4",
"validator": "^13.9.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"test:coverage": "react-scripts test --watchAll=false --coverage",
"format": "prettier --write \"**/*.{ts,tsx,json,md}\"",
"lint": "eslint src/**/*.{ts,tsx}",
"lint-fix": "eslint src/**/*.{ts,tsx} --fix",
"prepare": "husky install"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.9",
"@testing-library/react-hooks": "^8.0.1",
"@trivago/prettier-plugin-sort-imports": "^3.4.0",
"@types/react-test-renderer": "^18.0.0",
"@types/validator": "^13.7.12",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.61.0",
"autoprefixer": "^10.4.13",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest-dom": "^4.0.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^5.7.2",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"msw": "^0.47.4",
"postcss": "^8.4.20",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"react-test-renderer": "^18.2.0",
"standard": "^17.1.0",
"tailwindcss": "^3.1.8"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{ts,tsx}",
"!<rootDir>/node_modules/",
"!<rootDir>/path/to/dir/"
],
"coverageThreshold": {
"global": {
"branches": 26,
"functions": 26,
"lines": 26,
"statements": 26
}
},
"coverageReporters": [
"text"
]
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}