-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.74 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "suprachat-frontend",
"version": "2.0.0",
"private": true,
"description": "suprachat-frontend",
"author": "Pedro Partida",
"keywords": [
"gatsby"
],
"scripts": {
"develop": "gatsby develop",
"start": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"typecheck": "tsc --noEmit",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx}\"",
"lint": "eslint --fix --ext=.ts,.tsx .",
"lint:check": "eslint --ext=.ts,.tsx .",
"prepare": "husky install"
},
"dependencies": {
"@fontsource/manrope": "^4.5.13",
"@fontsource/poppins": "^4.5.10",
"@hookform/resolvers": "^2.9.11",
"@tailwindcss/typography": "^0.5.9",
"@tanstack/react-query": "^4.24.4",
"@tanstack/react-query-devtools": "^4.24.4",
"classix": "^2.1.24",
"daisyui": "^3.1.1",
"dayjs": "^1.11.7",
"gatsby": "^5.5.0",
"gatsby-plugin-image": "^3.5.0",
"gatsby-plugin-manifest": "^5.5.0",
"gatsby-plugin-sharp": "^5.5.0",
"gatsby-plugin-sitemap": "^6.5.0",
"gatsby-source-filesystem": "^5.5.0",
"gatsby-transformer-sharp": "^5.5.0",
"i18next": "^22.4.12",
"idtoken-verifier": "^2.2.3",
"js-base64": "^3.7.5",
"qs": "^6.11.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-head": "^3.4.2",
"react-hook-form": "^7.43.5",
"react-hot-toast": "^2.4.0",
"react-i18next": "^12.2.0",
"react-icons": "^4.8.0",
"react-particles": "^2.9.3",
"react-spinners": "^0.13.8",
"react-use": "^17.4.0",
"react-use-websocket": "^4.3.1",
"remeda": "^1.6.1",
"theme-change": "^2.5.0",
"tsparticles": "^2.9.3",
"tsparticles-engine": "^2.9.3",
"zod": "^3.20.2",
"zustand": "^4.3.2"
},
"devDependencies": {
"@commitlint/cli": "^17.5.1",
"@commitlint/config-conventional": "^17.4.4",
"@types/node": "^18.11.18",
"@types/qs": "^6.9.7",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"gatsby-plugin-postcss": "^6.8.0",
"gatsby-plugin-tsconfig-paths": "^1.0.6",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"postcss": "^8.4.24",
"prettier": "^2.8.8",
"tailwindcss": "^3.3.2",
"typescript": "^4.9.5"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write --config=prettier.config.js"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}