-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
82 lines (82 loc) · 2.5 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
{
"name": "nextjs-resume",
"version": "6.0.1",
"author": {
"name": "Colin Hemphill",
"email": "[email protected]",
"url": "https://colinhemphill.com"
},
"dependencies": {
"@heroicons/react": "2.2.0",
"@icons-pack/react-simple-icons": "10.2.0",
"@radix-ui/colors": "3.0.0",
"@radix-ui/react-dropdown-menu": "2.1.4",
"@radix-ui/react-slot": "1.1.1",
"@react-pdf/renderer": "4.1.6",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"contentlayer2": "0.5.3",
"next": "15.1.3",
"next-contentlayer2": "0.5.3",
"next-themes": "0.4.4",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-pdf-html": "2.1.2",
"tailwind-merge": "2.6.0"
},
"devDependencies": {
"@eslint/js": "9.17.0",
"@happy-dom/global-registrator": "16.0.0",
"@next/eslint-plugin-next": "15.1.3",
"@tailwindcss/postcss": "4.0.0-beta.6",
"@testing-library/react": "16.1.0",
"@testing-library/user-event": "14.5.2",
"@types/node": "22.10.2",
"@types/react": "19.0.2",
"bun-types": "1.1.42",
"eslint": "9.17.0",
"eslint-config-next": "15.1.3",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-react": "7.37.3",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-unicorn": "56.0.1",
"jsdom": "25.0.1",
"postcss": "8.4.49",
"prettier": "3.4.2",
"prettier-plugin-sort-json": "4.0.0",
"prettier-plugin-tailwindcss": "0.6.9",
"syncpack": "13.0.0",
"tailwindcss": "4.0.0-beta.6",
"typescript": "5.7.2",
"typescript-eslint": "8.18.2"
},
"homepage": "https://github.com/colinhemphill/nextjs-resume",
"keywords": [
"generator",
"nextjs",
"pdf",
"resume",
"tailwind"
],
"license": "MIT",
"overrides": {
"@types/react": "19.0.1"
},
"scripts": {
"build": "next build",
"build:content": "contentlayer2 build",
"dev": "next dev --turbopack",
"format": "prettier --write 'src/**/*.{json,js,ts,tsx}' && syncpack format",
"lint": "next lint --fix && syncpack format && syncpack lint",
"start": "next start",
"sync": "syncpack fix-mismatches",
"test": "bun test",
"test:coverage": "bun test --coverage",
"test:update": "bun test --update-snapshots",
"test:watch": "bun test --watch",
"types": "tsc -p tsconfig.json --noEmit",
"update": "syncpack update",
"yeet": "bunx rimraf bun.lockb && bunx rimraf **/{dist,node_modules,.turbo,.next,.vercel,.netlify}/ --glob && bunx rimraf **/tsconfig.tsbuildinfo --glob"
},
"type": "module"
}