forked from markmead/hyperui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.29 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
{
"name": "hyperui",
"scripts": {
"dev": "next dev --turbo",
"start": "next start",
"build": "next build",
"postbuild": "npm run css",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier '{src,app,public}/**/*.{css,js,jsx,mdx,html}' --write",
"css": "npm run css:components && npm run css:blogs",
"css:blogs": "npx tailwindcss -i src/styles/blogs.css -o public/blogs.css -m",
"css:components": "npx tailwindcss -i src/styles/components.css -o public/components.css -m"
},
"dependencies": {
"next": "14.1.4",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.1.4",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.12",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-next": "^14.1.4",
"fast-glob": "^3.3.2",
"gray-matter": "^4.0.3",
"next-mdx-remote": "^4.4.1",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.13",
"prismjs": "^1.29.0",
"react-intersection-observer": "^9.8.1",
"react-use": "^17.5.0",
"rehype-external-links": "^3.0.0",
"remark": "^15.0.1",
"remark-html": "^16.0.1",
"remark-slug": "^7.0.1",
"tailwindcss": "^3.4.3"
}
}