-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.4 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.4 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
{
"name": "nascjoao.github.io",
"description": "João Nascimento's personal website",
"license": "MIT",
"author": {
"name": "João Nascimento",
"email": "oi@nasc.dev",
"url": "https://nasc.dev"
},
"version": "0.6.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier": "prettier --write",
"steiger": "steiger ./src",
"prepare": "husky",
"precommit": "lint-staged",
"test": "vitest --config ./src/app/config/vitest.config.mts --run",
"test:watch": "vitest --config ./src/app/config/vitest.config.mts",
"test:related": "vitest related --config ./src/app/config/vitest.config.mts --run",
"coverage": "vitest --coverage --config ./src/app/config/vitest.config.mts --run",
"coverage:watch": "vitest --coverage --config ./src/app/config/vitest.config.mts",
"type-check": "tsc --noEmit"
},
"pnpm": {
"overrides": {
"vite": "6.2.6"
}
},
"dependencies": {
"@mdx-js/loader": "^3.1.1",
"@mdx-js/react": "^3.1.1",
"@next/mdx": "^15.5.6",
"@radix-ui/react-select": "^2.1.7",
"@types/mdx": "^2.0.13",
"dayjs": "^1.11.18",
"frontmatter-markdown-loader": "^3.7.0",
"gray-matter": "^4.0.3",
"next": "15.2.5",
"next-intl": "^4.0.2",
"next-mdx-remote-client": "^2.1.7",
"next-themes": "^0.4.6",
"pixelarticons": "^1.8.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-tooltip": "^5.28.1",
"remark": "^15.0.1",
"remark-frontmatter": "^5.0.0",
"remark-html": "^16.0.1",
"remark-mdx-frontmatter": "^5.2.0",
"tailwind-merge": "^3.2.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^3.1.1",
"eslint": "^9",
"eslint-config-next": "15.2.5",
"glob": "^11.0.1",
"husky": "^9.1.7",
"jsdom": "^26.0.0",
"lint-staged": "^15.5.0",
"next-router-mock": "^0.9.13",
"prettier": "^3.5.3",
"steiger": "^0.5.6",
"tailwindcss": "^4",
"tsx": "^4.19.3",
"typescript": "^5",
"vite-plugin-svgr": "^4.3.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.1.1"
}
}