forked from redxzeta/Awesome-Adoption
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.98 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
{
"name": "pet-adoption",
"version": "0.1.0",
"private": true,
"dependencies": {
"@supabase/supabase-js": "^1.24.0",
"@testing-library/jest-dom": "^5.13.0",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^13.1.9",
"bootstrap": "5.1.1",
"bootstrap-icons": "^1.6.0",
"bootswatch": "^5.1.1",
"jwt-decode": "^3.1.2",
"postcode-validator": "^3.1.0",
"react": "^17.0.0",
"react-bootstrap": "^2.0.0-rc.0",
"react-country-region-selector": "^3.4.0",
"react-dom": "^17.0.0",
"react-icons": "^4.3.1",
"react-router-dom": "6",
"react-scripts": "4.0.0",
"react-supabase": "^0.2.0",
"validator": "^13.7.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"lint": "eslint ./",
"lint-fix": "eslint ./ --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": {
"@testing-library/react-hooks": "^7.0.2",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.24.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"msw": "^0.35.0",
"prettier": "^2.3.0",
"pretty-quick": "^3.1.0",
"react-test-renderer": "^17.0.2",
"standard": "^16.0.3",
"swr": "^1.1.0"
},
"lint-staged": {
"*.js": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && pretty-quick --staged"
}
}
}