-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
97 lines (97 loc) · 2.9 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "pablopikassiet",
"version": "1.1.0",
"description": "Nextjs template for artists and content creators",
"author": "pxlsyl",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "cross-env INIT_CWD=$PWD next build && cross-env NODE_OPTIONS='--experimental-json-modules' node ./scripts/postbuild.mjs",
"preview": "next start",
"analyze": "cross-env ANALYZE=true next build",
"lint": "next lint",
"format": "prettier -w ./app ./components ./hooks ./lib ./scripts ./types",
"windows": "node ./scripts/postContentLayer.mjs",
"music": "node ./scripts/musicData.mjs"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@formspree/react": "^2.5.1",
"@next/bundle-analyzer": "^14.2.3",
"contentlayer2": "0.4.5",
"date-fns": "^3.3.0",
"date-fns-tz": "^3.1.2",
"framer-motion": "^11.1.7",
"fuse.js": "^7.0.0",
"github-slugger": "^2.0.0",
"gray-matter": "^4.0.3",
"hast-util-from-html-isomorphic": "^2.0.0",
"marked": "^12.0.2",
"music-metadata": "^7.14.0",
"next": "^14.2.3",
"next-contentlayer2": "0.4.5",
"next-mdx-remote": "^0.0.0-canary-20240321205249",
"next-themes": "^0.3.0",
"pliny": "0.2.0",
"react": "^18.3.0",
"react-accessible-accordion": "^5.0.0",
"react-dom": "^18.3.0",
"react-gtm-module": "^2.0.11",
"react-h5-audio-player": "^3.9.1",
"react-lite-youtube-embed": "^2.4.0",
"react-toastify": "^10.0.4",
"rehype-autolink-headings": "^7.1.0",
"rehype-citation": "^2.0.0",
"rehype-katex": "^7.0.0",
"rehype-preset-minify": "7.0.0",
"rehype-prism-plus": "^2.0.0",
"rehype-slug": "^6.0.0",
"remark": "^15.0.1",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"sharp": "^0.33.2",
"swiper": "^11.0.5",
"zustand": "^4.5.0"
},
"devDependencies": {
"@svgr/webpack": "^8.1.0",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"@types/github-slugger": "^2.0.0",
"@types/marked": "^6.0.0",
"@types/mdx": "^2.0.12",
"@types/node": "20.12.7",
"@types/react": "18.3.0",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"autoprefixer": "^10.4.17",
"cross-env": "^7.0.3",
"eslint": "^9.1.1",
"eslint-config-next": "^14.2.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"lint-staged": "^15.2.0",
"postcss": "^8.4.33",
"prettier": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.11",
"sass": "^1.70.0",
"tailwind-bootstrap-grid": "^5.1.0",
"tailwindcss": "^3.4.3",
"typescript": "^5.3.3"
},
"lint-staged": {
"*.+(js|jsx|ts|tsx)": [
"eslint --fix"
],
"*.+(js|jsx|ts|tsx|json|css|md|mdx)": [
"prettier --write"
]
},
"packageManager": "yarn@4.0.2",
"lockfileIgnorePatterns": [
"pablopikassiet/*"
]
}