forked from colinhemphill/nextjs-resume
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.8 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
{
"name": "nextjs-resume",
"version": "5.0.2",
"type": "module",
"author": {
"name": "Colin Hemphill",
"email": "colin@colinhemphill.com",
"url": "https://colinhemphill.com"
},
"keywords": [
"resume",
"generator",
"nextjs",
"pdf",
"tailwind"
],
"homepage": "https://github.com/colinhemphill/nextjs-resume",
"scripts": {
"build": "next build",
"build:content": "contentlayer build",
"dev": "next dev",
"format": "prettier --write 'src/**/*.{json,js,ts,tsx}'",
"lint": "next lint",
"prepare": "husky",
"start": "next start",
"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"
},
"dependencies": {
"@heroicons/react": "2.1.3",
"@icons-pack/react-simple-icons": "9.5.0",
"@radix-ui/colors": "3.0.0",
"@react-pdf/renderer": "3.4.4",
"class-variance-authority": "0.7.0",
"contentlayer": "0.3.4",
"next": "14.2.3",
"next-contentlayer": "0.3.4",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-pdf-html": "2.0.4",
"tailwind-merge": "2.3.0"
},
"devDependencies": {
"@happy-dom/global-registrator": "14.12.0",
"@testing-library/react": "16.0.0",
"@types/node": "20.14.2",
"@types/react": "18.3.3",
"autoprefixer": "10.4.19",
"bun-types": "1.1.12",
"eslint": "8.57.0",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "9.1.0",
"husky": "9.0.11",
"jsdom": "24.1.0",
"lint-staged": "15.2.5",
"postcss": "8.4.38",
"prettier": "3.3.1",
"prettier-plugin-tailwindcss": "0.6.2",
"tailwindcss": "3.4.4",
"typescript": "5.4.5",
"webpack": "5.91.0",
"windy-radix-palette": "2.0.0-beta.7"
}
}