-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.51 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
{
"name": "portfolio",
"version": "0.1.0",
"private": true,
"license": "UNLICENSED",
"packageManager": "[email protected]",
"scripts": {
"\n============= Setup ==============": "",
"prepare": "husky",
"preinstall": "npx only-allow pnpm",
"\n============== Dev ===============": "",
"dev": "next dev",
"build": "next build",
"start": "serve out",
"\n============== Lint ==============": "",
"lint": "pnpm run '/^lint:.*/'",
"lint:next": "next lint",
"lint:tsc": "tsc --noEmit",
"lint:prettier": "prettier --cache --check .",
"\n============= Script =============": "",
"analyze": "cross-env ANALYZE=true next build",
"lighthouse": "unlighthouse --site https://josephmcg.dev --no-cache"
},
"dependencies": {
"next": "15.0.2",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@heroicons/react": "^2.2.0",
"@josephmcg/eslint-config-next": "^1.2.0",
"@josephmcg/prettier-config": "^1.0.3",
"@josephmcg/tsconfig": "^1.0.1",
"@next/bundle-analyzer": "^15.1.3",
"@total-typescript/ts-reset": "^0.6.1",
"@types/node": "22.9.0",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"autoprefixer": "10.4.20",
"clsx": "^2.1.1",
"cross-env": "^7.0.3",
"husky": "^9.1.6",
"lint-staged": "^15.3.0",
"postcss": "8.4.47",
"tailwindcss": "3.4.14",
"typescript": "5.6.3",
"unlighthouse": "^0.15.0"
}
}