-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.52 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
{
"name": "312ten039",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint:format": "prettier --cache --write ./src",
"lint:eslint": "eslint --cache ./src --fix",
"lint": "npm run lint:format && npm run lint:eslint",
"postinstall": "husky install"
},
"dependencies": {
"axios": "^1.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-ga4": "^2.1.0",
"react-gtm-module": "^2.0.11",
"react-hot-toast": "^2.4.1",
"react-router-dom": "^6.20.1",
"react-toastify": "^9.1.3",
"recoil": "^0.7.7"
},
"devDependencies": {
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@types/react-gtm-module": "^2.0.3",
"@types/recoil": "^0.0.9",
"@types/styled-components": "^5.1.34",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"@vitejs/plugin-react": "^4.2.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.4",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.0",
"styled-components": "^6.1.1",
"typescript": "^5.2.2",
"vite": "^5.0.0",
"vite-tsconfig-paths": "^4.2.2"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --cache --write",
"eslint --cache --fix"
]
}
}