-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.08 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
{
"name": "styled-system",
"version": "0.1.0",
"private": false,
"homepage": "https://digitalandyeu.github.io/styled-system",
"author": {
"name": "Andrii Ivashchuk (@digitalandyeu)",
"url": "https://github.com/andriilive",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/digitalandyeu/styled-system"
},
"scripts": {
"pre-commit": "eslint . --fix && prettier . --write && next lint",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"export": "next export",
"export:localhost": "npm run build && npm run export && npx serve out",
"export:production": "export NEXT_PUBLIC_EXPORT=1 && npm run build && npm run export"
},
"dependencies": {
"@mdx-js/loader": "^2.3.0",
"@mdx-js/react": "^2.3.0",
"@next/mdx": "^13.5.6",
"@tailwindcss/typography": "^0.5.10",
"@types/mdx": "^2.0.9",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"glob": "^10.3.10",
"gray-matter": "^4.0.3",
"lucide-react": "^0.288.0",
"next": "13.5.6",
"next-mdx-remote": "^4.4.1",
"next-themes": "^0.2.1",
"react": "^18",
"react-dom": "^18",
"rehype-autolink-headings": "^7.0.0",
"rehype-highlight": "^7.0.0",
"rehype-slug": "^6.0.0",
"tailwind-merge": "^1.14.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@heroicons/react": "^2.0.18",
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@types/glob": "^8.1.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"autoprefixer": "^10",
"eslint": "^8.52.0",
"eslint-config-next": "^13.5.6",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-tailwindcss": "^3.13.0",
"husky": "^8.0.3",
"postcss": "^8",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.6",
"pretty-quick": "^3.1.3",
"tailwindcss": "^3",
"typescript": "^5"
}
}