-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.97 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
{
"name": "vite-react-app",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint \"**/*.{ts,tsx}\"",
"lint:fix": "eslint --fix",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc",
"prepare": "husky install",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css}": [
"prettier --write",
"eslint --fix src/",
"tslint --fix --project .",
"git add"
]
},
"dependencies": {
"@reduxjs/toolkit": "^1.9.3",
"@types/react-redux": "^7.1.25",
"@types/react-router-dom": "^5.3.3",
"@types/react-test-renderer": "^18.0.0",
"@types/redux-mock-store": "^1.0.3",
"eslint-plugin-react-hooks": "^4.6.0",
"firebase": "^9.17.2",
"isomorphic-fetch": "^3.0.0",
"jsdom": "^21.1.1",
"lint-staged": "^13.1.2",
"moment": "^2.29.4",
"moment-timezone": "^0.5.41",
"postcss": "^8.4.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.5",
"react-redux": "^8.0.5",
"react-router-dom": "^6.8.2",
"react-toastify": "^9.1.1",
"sass": "^1.58.3"
},
"devDependencies": {
"@testing-library/react": "^14.0.0",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.11",
"@types/typescript": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"@vitejs/plugin-react": "^3.1.0",
"@vitest/coverage-c8": "^0.29.2",
"dotenv": "^16.0.3",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.3",
"prettier": "^2.8.4",
"redux-mock-store": "^1.5.4",
"typescript": "^4.9.3",
"vite": "^4.1.0"
}
}