-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.82 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
{
"name": "ts-boilerplate",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"start:local": "vite",
"start:dev": "vite --mode development",
"start:production": "vite --mode production",
"build": "tsc && vite build",
"lint": "eslint src --fix --max-warnings=2",
"preview": "vite preview",
"test": "vitest",
"prepare": "husky install"
},
"dependencies": {
"@reduxjs/toolkit": "^1.9.5",
"firebase": "^10.12.3",
"path-to-regexp": "^6.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet-async": "^1.3.0",
"react-redux": "^8.1.1",
"react-router-dom": "^6.14.2",
"redux-persist": "^6.0.0",
"vite-plugin-checker": "^0.6.1"
},
"devDependencies": {
"@commitlint/cli": "17.6.7",
"@commitlint/config-conventional": "17.6.7",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/redux-persist": "^4.3.1",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"@vitejs/plugin-react": "^4.0.3",
"autoprefixer": "^10.4.19",
"eslint": "^8.45.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"husky": "^8.0.0",
"jsdom": "^22.1.0",
"postcss": "^8.4.39",
"prettier": "^3.0.0",
"sass": "^1.64.1",
"tailwindcss": "^3.4.4",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vite-plugin-eslint": "^1.8.1",
"vitest": "^0.33.0"
}
}