-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.49 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": "ticket-project",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint --cache .",
"preview": "vite preview",
"format": "prettier --write .",
"postinstall": "husky install"
},
"dependencies": {
"firebase": "^10.13.0",
"firebase-tools": "^13.16.0",
"imagemin": "^9.0.0",
"imagemin-svgo": "^11.0.1",
"jotai": "^2.9.0",
"react": "^18.3.1",
"react-calendar": "^5.0.0",
"react-dom": "^18.3.1",
"react-js-pagination": "^3.0.3",
"react-router-dom": "^6.25.1",
"react-tooltip": "^5.27.1",
"styled-components": "^6.1.11"
},
"devDependencies": {
"@eslint/js": "^9.6.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"globals": "^15.8.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.10",
"prettier": "3.3.2",
"vite": "^5.3.1",
"vite-plugin-svgr": "^4.2.0"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"**/*.{json,css,scss,md}": [
"prettier --write"
]
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"singleQuote": false,
"trailingComma": "none"
}
}