-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.48 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
{
"name": "frontend-react",
"private": true,
"version": "0.0.24",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test:run": "cypress run",
"test:open": "cypress open",
"lint:check": "eslint . --ext ts,tsx,js,jsx",
"lint:fix": "eslint . --ext ts,tsx,js,jsx --fix",
"format:check": "prettier src/ --check",
"format:fix": "prettier src/ --write"
},
"dependencies": {
"axios": "^1.5.1",
"lucide-react": "^0.289.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.47.0",
"react-hot-toast": "^2.4.1",
"react-router-dom": "6.17.0"
},
"devDependencies": {
"@cypress/code-coverage": "3.12.6",
"@faker-js/faker": "8.2.0",
"@types/react": "^18.2.33",
"@types/react-dom": "^18.2.14",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"@vitejs/plugin-react-swc": "^3.4.0",
"autoprefixer": "10.4.16",
"cypress": "13.3.3",
"eslint": "^8.52.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"git-semver-tags": "7.0.1",
"istanbul": "0.4.5",
"nyc": "15.1.0",
"postcss": "8.4.31",
"prettier": "3.0.3",
"prettier-plugin-tailwindcss": "0.5.6",
"standard-version": "9.5.0",
"tailwindcss": "3.3.5",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vite-plugin-istanbul": "5.0.0"
}
}