-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
78 lines (78 loc) · 2.18 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
{
"name": "react-weather",
"version": "1.0.0",
"private": true,
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "TIMING=1 eslint src --ext js",
"format": "prettier --write \"**/*.+(js|json|css|html)\"",
"check": "prettier --check \"**/*.+(js|json|css|html)\"",
"coverage": "jest --coverage",
"test": "jest",
"test:watch": "jest --watchAll",
"prepare": "husky install"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@tailwindcss/typography": "^0.5.10",
"dayjs": "^1.11.10",
"lodash-es": "^4.17.21",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.12.0",
"react-router-dom": "^6.21.1",
"swr": "^2.2.4",
"vercel-toast": "^1.8.0"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/eslint-parser": "^7.23.3",
"@babel/preset-env": "^7.23.7",
"@babel/preset-react": "^7.23.3",
"@testing-library/jest-dom": "^6.1.6",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.2",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.16",
"babel-jest": "^29.7.0",
"babel-plugin-transform-vite-meta-env": "^1.0.3",
"babel-preset-vite": "^1.1.2",
"eslint": "^8.56.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^6.2.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"postcss": "^8.4.32",
"prettier": "^3.1.1",
"prettier-plugin-tailwindcss": "^0.5.10",
"pretty-quick": "^3.1.3",
"react-test-renderer": "^18.2.0",
"tailwindcss": "^3.4.0",
"turbo": "^1.11.2",
"vite": "^5.0.10"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && pnpm run lint && pnpm run format && pnpm run check && pnpm run coverage"
}
}
}