-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.11 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
{
"name": "next-resume-generator",
"version": "0.0.0",
"author": {
"name": "Justin Barca",
"url": "https://justin-barca-resume.vercel.app/"
},
"keywords": [
"resume",
"generator",
"nextjs",
"pdf"
],
"homepage": "https://github.com/justin-hackin/justin-barca-resume",
"scripts": {
"analyze": "ANALYZE=true next build",
"build": "next build",
"copy": "copyfiles --flat 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",
"@prismicio/client": "6.7.3",
"@prismicio/helpers": "2.3.9",
"@prismicio/react": "2.5.1",
"@radix-ui/colors": "0.1.8",
"@react-pdf/renderer": "3.1.0",
"@vercel/og": "0.0.27",
"indefinite": "2.4.2",
"next": "13.2.1",
"next-compose-plugins": "2.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-pdf-html": "1.1.17"
},
"devDependencies": {
"@next/bundle-analyzer": "13.1.1",
"@tailwindcss/typography": "0.5.9",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@types/jest": "29.4.0",
"@types/node": "18.11.18",
"@types/react": "18.0.27",
"autoprefixer": "10.4.13",
"copyfiles": "2.4.1",
"eslint": "8.32.0",
"eslint-config-next": "13.2.1",
"eslint-config-prettier": "8.6.0",
"husky": "8.0.3",
"jest": "29.4.1",
"jest-environment-jsdom": "29.4.1",
"lint-staged": "13.1.0",
"postcss": "8.4.21",
"prettier": "2.8.3",
"prettier-plugin-tailwindcss": "0.2.2",
"tailwindcss": "3.2.4",
"typescript": "4.9.4",
"unfetch": "5.0.0",
"webpack": "5.75.0"
},
"overrides": {
"@react-pdf/renderer": {
"react": "^18.0.0"
}
}
}