-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.37 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
{
"name": "@pmoen/frontend",
"type": "module",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier:fix": "prettier --write ."
},
"dependencies": {
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@next/mdx": "^15.1.5",
"@types/mdx": "^2.0.13",
"@types/node": "22.10.7",
"@types/react": "19.0.7",
"@types/react-dom": "19.0.3",
"@types/react-syntax-highlighter": "^15.5.13",
"@vercel/analytics": "^1.4.1",
"@vercel/speed-insights": "^1.1.0",
"autoprefixer": "10.4.20",
"babel-plugin-react-compiler": "^19.0.0-beta-e552027-20250112",
"classnames": "^2.5.1",
"date-fns": "^4.1.0",
"eslint": "^9.18.0",
"eslint-config-next": "15.1.5",
"next": "15.1.5",
"postcss": "8.5.1",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.10",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-icons": "^5.4.0",
"react-syntax-highlighter": "^15.6.1",
"tailwind-merge": "^2.6.0",
"tailwindcss": "3.4.17",
"tailwindcss-animated": "^1.1.2",
"typescript": "5.7.3",
"zod": "^3.24.1"
},
"devEngines": {
"runtime": {
"name": "bun",
"onFail": "error"
},
"packageManager": {
"name": "bun",
"onFail": "error"
}
}
}