-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.21 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
{
"name": "portfolio",
"repository": "portfolio",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --filter=portfolio-site",
"start": "turbo run start",
"lint": "turbo run lint",
"clean": "turbo run clean",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"ui:add": "pnpm --filter @repo/ui ui:add"
},
"dependencies": {
"@next/bundle-analyzer": "^14.1.4",
"@vercel/analytics": "^1.2.2",
"@vercel/speed-insights": "^1.0.10",
"next": "14.2.8",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.1",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@manypkg/cli": "^0.20.0",
"@repo/utils": "workspace:*",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"@unlighthouse/cli": "^0.11.5",
"@vercel/style-guide": "^5.1.0",
"autoprefixer": "^10.4.14",
"concurrently": "^8.0.1",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-next": "^14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-turbo": "^2.0.12",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-tailwindcss": "^3.13.1",
"eslint-plugin-unused-imports": "^3.0.0",
"postcss": "^8",
"prettier": "^3.2.5",
"prettier-plugin-classnames": "^0.6.6",
"prettier-plugin-merge": "^0.6.0",
"prettier-plugin-tailwindcss": "^0.5.9",
"pretty-quick": "^4.0.0",
"puppeteer": "^22.6.0",
"simple-git-hooks": "^2.11.1",
"turbo": "^2.1.2",
"typescript": "^5",
"unlighthouse": "^0.11.5"
},
"peerDependencies": {
"typescript": ">=4.2.0"
},
"packageManager": "[email protected]",
"simple-git-hooks": {
"pre-commit": "p pretty-quick --staged",
"pre-push": "p build"
}
}