-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.87 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
{
"name": "marcbouchenoire.com",
"description": "My personal website and portfolio.",
"author": "Marc Bouchenoire",
"license": "MIT",
"repository": "https://github.com/marcbouchenoire/marcbouchenoire.com",
"homepage": "https://marcbouchenoire.com",
"packageManager": "[email protected]",
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"prettier": "prettier --write --log-level silent --ignore-path .eslintignore",
"lint": "bun run lint:eslint && bun run lint:stylelint && bun run lint:tsc && bun run lint:prettier",
"lint:eslint": "eslint '**/*.{cjs,mjs,ts,tsx}' --fix",
"lint:prettier": "bun run prettier '**/*.{cjs,mjs,ts,tsx,json,md,yml,css}'",
"lint:stylelint": "stylelint '**/*.css' --fix",
"lint:tsc": "tsc --project tsconfig.json",
"postinstall": "bun src/scripts/postinstall.ts"
},
"dependencies": {
"bright": "^0.8.5",
"clsx": "^2.1.0",
"date-fns": "^3.6.0",
"fast-base64": "^0.1.8",
"fast-xml-parser": "^4.3.6",
"framer-motion": "^11.0.20",
"hast-util-to-html": "^9.0.0",
"hastscript": "^9.0.0",
"html-entities": "^2.5.2",
"next": "^15.0.0",
"next-themes": "^0.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"swr": "^2.2.5"
},
"devDependencies": {
"@marcbouchenoire/eslint-config": "^3.0.1",
"@marcbouchenoire/prettier-config": "^1.1.0",
"@marcbouchenoire/stylelint-config": "^2.0.1",
"@tailwindcss/typography": "^0.5.10",
"@types/node": "^20.11.30",
"@types/react": "^18.2.69",
"@types/react-dom": "^18.2.22",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"execa": "^8.0.1",
"postcss": "^8.4.38",
"postcss-nesting": "^12.1.0",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.12",
"stylelint": "^15.11.0",
"tailwindcss": "^3.4.1",
"typescript": "^5.4.3",
"write-json-file": "^5.0.0"
}
}