-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.95 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.95 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "gnios-blog",
"version": "1.0.0",
"private": true,
"author": {
"name": "Gnios",
"email": "seu-email@exemplo.com",
"url": "https://gnios.github.io"
},
"scripts": {
"prepare": "husky install",
"dev": "next dev",
"build": "next build && next export",
"start": "next start",
"lint": "next lint --fix --dir pages --dir components --dir lib --dir layouts --dir scripts",
"export": "next build && next export",
"deploy": "npm run build && touch out/.nojekyll",
"resume:pdf": "node scripts/generate-resume-pdf.js",
"resume:html": "node scripts/generate-resume-html.js",
"resume:generate": "npm run resume:pdf && npm run resume:html",
"resume:serve": "npx resume serve data/resume.json --theme elegant",
"resume:validate": "npx resume validate --resume data/resume.json"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/gnios/gnios.github.io.git"
},
"dependencies": {
"@fontsource/inter": "4.5.2",
"@headlessui/react": "^1.5.0",
"@radix-ui/react-icons": "^1.1.1",
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/typography": "^0.5.0",
"autoprefixer": "10.4.5",
"date-fns": "^2.28.0",
"esbuild": "^0.25.10",
"framer-motion": "^6.3.10",
"github-slugger": "^1.3.0",
"gray-matter": "^4.0.2",
"image-size": "1.0.0",
"mdx-bundler": "^9.0.0",
"next": "^12.3.4",
"next-themes": "^0.0.14",
"nprogress": "^0.2.0",
"postcss": "^8.4.5",
"prism-react-renderer": "^2.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"react-markdown": "^10.1.0",
"react-scroll-progress-bar": "^1.1.13",
"react-share": "^4.4.0",
"reading-time": "1.3.0",
"rehype-autolink-headings": "^6.1.0",
"rehype-citation": "^0.4.0",
"rehype-katex": "^6.0.2",
"rehype-preset-minify": "6.0.0",
"rehype-prism-plus": "^1.1.3",
"rehype-slug": "^5.0.0",
"remark-footnotes": "^4.0.1",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"sharp": "^0.30.5",
"swr": "^2.3.6",
"tailwindcss": "^3.0.23",
"typewriter-effect": "^2.18.2",
"unist-util-visit": "^4.0.0",
"use-sound": "^4.0.1",
"react-social-icons": "^5.13.0"
},
"devDependencies": {
"@svgr/webpack": "^6.1.2",
"cross-env": "^7.0.3",
"eslint": "^7.29.0",
"eslint-config-next": "12.1.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.3.1",
"file-loader": "^6.0.0",
"globby": "11.0.3",
"husky": "^6.0.0",
"inquirer": "^8.1.1",
"jsonresume-theme-elegant": "^1.16.1",
"jsonresume-theme-kendall": "^0.2.0",
"jsonresume-theme-modern": "^0.0.18",
"lint-staged": "^11.0.0",
"prettier": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.1.4",
"resume-cli": "^3.0.8"
},
"lint-staged": {
"*.+(js|jsx|ts|tsx)": [
"eslint --fix"
],
"*.+(js|jsx|ts|tsx|json|css|md|mdx)": [
"prettier --write"
]
}
}