-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.51 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
{
"homepage": "https://firehawk89.github.io/expenses-react-app/",
"name": "react-complete-guide",
"type": "module",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "vite",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write .",
"build": "tsc && vite build",
"preview": "vite preview",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@tanstack/react-query": "^5.17.9",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"prettier": "^3.1.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-router-dom": "^6.14.2",
"sass": "^1.58.3",
"web-vitals": "^3.5.0"
},
"devDependencies": {
"@types/react": "^18.2.17",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.0.1",
"autoprefixer": "^10.4.16",
"eslint": "^8.44.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.1",
"gh-pages": "^6.1.1",
"postcss": "^8.4.32",
"tailwindcss": "^3.4.0",
"typescript": "^5.1.6",
"vite": "^5.0.10"
}
}