-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.13 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": "next-resume-generator",
"version": "3.0.3",
"author": {
"name": "Colin Hemphill",
"email": "[email protected]",
"url": "https://colinhemphill.com"
},
"keywords": [
"resume",
"generator",
"nextjs",
"pdf"
],
"homepage": "https://github.com/colinhemphill/nextjs-resume-generator",
"scripts": {
"analyze": "ANALYZE=true next build",
"build": "next build",
"copy": "copyfiles --flat edit-me/config/**/*.{png,ico,json} public",
"dev": "next dev",
"format": "prettier --write 'src/**/*.{json,js,ts,tsx}'",
"lint": "next lint",
"prepare": "husky install && npm run copy",
"start": "next start",
"test": "jest",
"test:update": "jest -u",
"types": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "6.2.1",
"@fortawesome/free-brands-svg-icons": "6.2.1",
"@fortawesome/free-solid-svg-icons": "6.2.1",
"@fortawesome/react-fontawesome": "0.2.0",
"@next/font": "13.1.1",
"@radix-ui/colors": "0.1.8",
"@react-pdf/renderer": "3.1.0",
"@vercel/og": "0.0.27",
"front-matter": "4.0.2",
"indefinite": "2.4.2",
"marked": "4.2.12",
"next": "13.1.1",
"next-compose-plugins": "2.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-pdf-html": "1.1.17",
"tiny-invariant": "1.3.1"
},
"devDependencies": {
"@next/bundle-analyzer": "13.1.1",
"@tailwindcss/typography": "0.5.9",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "14.0.0",
"@types/jest": "29.4.0",
"@types/node": "18.14.0",
"@types/react": "18.0.28",
"autoprefixer": "10.4.13",
"copyfiles": "2.4.1",
"eslint": "8.34.0",
"eslint-config-next": "13.1.6",
"eslint-config-prettier": "8.6.0",
"husky": "8.0.3",
"jest": "29.4.3",
"jest-environment-jsdom": "29.4.3",
"lint-staged": "13.1.2",
"postcss": "8.4.21",
"prettier": "2.8.4",
"prettier-plugin-tailwindcss": "0.2.3",
"tailwindcss": "3.2.7",
"typescript": "4.9.5",
"webpack": "5.75.0"
},
"overrides": {
"@react-pdf/renderer": {
"react": "^18.0.0"
}
}
}