-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·60 lines (60 loc) · 1.78 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
{
"name": "hackathon-livedemo",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --port 4173",
"build": "tsc && vite build",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"typescript": "tsc",
"preview": "vite preview --port 4173",
"deploy:functions": "npm --prefix functions run build && firebase deploy --only functions:token",
"deploy:hosting": "npm run build && firebase deploy --only hosting"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"@reduxjs/toolkit": "^2.2.3",
"axios": "^1.6.8",
"install": "^0.13.0",
"npm": "^10.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^9.1.0",
"react-router-dom": "^6.20.0",
"sass": "^1.74.1",
"styled-components": "^6.1.8"
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@rollup/plugin-replace": "^5.0.5",
"@types/axios": "^0.14.0",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@types/react-lazy-load-image-component": "^1.6.3",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"@vitejs/plugin-react": "^4.2.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-refresh": "^0.4.4",
"eslint-plugin-testing-library": "^6.2.0",
"husky": "^9.0.11",
"jsdom": "^23.0.1",
"msw": "^2.0.10",
"prettier": "3.2.5",
"typescript": "^5.2.2",
"vite": "^5.2.11",
"vitest": "^0.34.6",
"firebase-tools": "^13.7.1"
},
"overrides": {
"minimatch": "5.1.2",
"glob": "8.1.0"
}
}