-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.32 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.32 KB
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
{
"name": "spencewenski.com",
"packageManager": "yarn@3.4.1",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && prettier -c .",
"prettier": "prettier --ignore-path .prettierignore --ignore-path .gitignore -c .",
"format": "prettier --ignore-path .prettierignore --ignore-path .gitignore --write .",
"start": "next start",
"lint": "next lint",
"clean": "rm -r ./.next"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.2.0",
"@mui/material": "^7.2.0",
"@sendgrid/mail": "^8.1.5",
"@tanstack/react-query": "^4.40.1",
"@trpc/client": "^10.45.2",
"@trpc/next": "^10.45.2",
"@trpc/react-query": "^10.45.2",
"@trpc/server": "^10.45.2",
"@types/lodash": "^4.17.20",
"@types/node": "22.16.5",
"@types/react": "18.3.23",
"@types/react-dom": "18.3.7",
"eslint": "8.57.1",
"eslint-config-next": "14.2.30",
"lodash": "^4.17.21",
"loglevel": "^1.9.2",
"next": "^14.2.30",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sharp": "^0.33.5",
"superjson": "^2.2.2",
"typescript": "^5.8.3",
"usehooks-ts": "^2.16.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@svgr/webpack": "^8.1.0",
"prettier": "^3.6.2"
}
}