This repository has been archived by the owner on Dec 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.1 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
{
"name": "coil_frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --check .",
"write": "prettier --write .",
"preview": "vite preview",
"prepare": "husky && husky install"
},
"dependencies": {
"@aws-cdk/aws-amplify": "^1.204.0",
"@aws-cdk/aws-codecommit": "^1.204.0",
"@azure/msal-browser": "^3.19.1",
"@azure/msal-react": "^2.0.21",
"axios": "^1.7.2",
"date-fns": "^3.6.0",
"primeicons": "^7.0.0",
"primereact": "^10.7.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.2.1",
"react-router-dom": "^6.25.1",
"react-select": "^5.8.0",
"react-spinners": "^0.14.1",
"swiper": "^11.1.5"
},
"devDependencies": {
"@types/react": "^18.2.56",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react-swc": "^3.6.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"postcss": "^8.4.38",
"prettier": "3.2.5",
"rollup-plugin-analyzer": "^4.0.0",
"tailwindcss": "^3.4.1",
"typescript": "^5.2.2",
"vite": "^5.2.0",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-imagemin": "^0.6.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{json,js,ts,tsx,html}": [
"prettier . --write"
],
"*.{js,ts,tsx}": [
"eslint . --fix"
]
}
}