-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.61 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
{
"name": "pabloporto.me",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test:e2e": "cypress run",
"lint": "next lint",
"lint:fix": "next lint --fix .",
"format": "prettier --check './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc",
"format:fix": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc",
"performance:check": "./scripts/performance-check.sh"
},
"dependencies": {
"@radix-ui/react-collapsible": "^1.0.2",
"@vercel/analytics": "^0.1.11",
"date-fns": "^2.28.0",
"gray-matter": "^4.0.3",
"micromark": "^3.1.0",
"micromark-extension-gfm": "^2.0.1",
"next": "^13.5.3",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@lhci/cli": "^0.12.0",
"@svgr/webpack": "^7.0.0",
"@tailwindcss/typography": "^0.5.9",
"@types/node": "^20.4.2",
"@types/react": "^18.0.35",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.62.0",
"autoprefixer": "^10.4.14",
"cypress": "^12.4.0",
"eslint": "^8.37.0",
"eslint-config-next": "^13.5.3",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-cypress": "^2.13.2",
"postcss": "^8.4.21",
"prettier": "^3.0.0",
"prettier-plugin-tailwind-css": "^1.5.0",
"sharp": "^0.32.0",
"tailwindcss": "^3.3.1",
"typescript": "^5.0.3"
}
}