-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.16 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
{
"name": "web",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "next dev --turbopack -p 3001",
"build": "next build",
"start": "serve out -p 3002",
"lint": "eslint . --fix",
"format": "prettier --write \"**/*.{ts,tsx}\" Dockerfile"
},
"dependencies": {
"@icons-pack/react-simple-icons": "^13.11.1",
"@repo/common": "*",
"@repo/trpc": "*",
"@repo/ui": "*",
"motion": "^12.36.0",
"next": "^16.1.6",
"next-themes": "^0.4.6",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-medium-image-zoom": "^5.4.1"
},
"devDependencies": {
"@svgr/webpack": "^8.1.0",
"@types/node": "^20.19.32",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.24",
"eslint": "^9.39.2",
"eslint-config-next": "^16.0.3",
"postcss": "^8.5.6",
"prettier": "^3.8.3",
"prettier-plugin-sh": "^0.18.1",
"prettier-plugin-tailwindcss": "^0.6.14",
"serve": "^14.2.6",
"tailwindcss": "^4.1.17",
"turbopack-inline-svg-loader": "^1.0.3",
"typescript": "^5.9.3"
},
"overrides": {
"@types/react": "19.2.5",
"@types/react-dom": "19.2.3"
}
}