-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
102 lines (102 loc) · 3.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
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
98
99
100
101
102
{
"name": "nitric-docs-v2",
"version": "0.1.0",
"private": true,
"scripts": {
"postinstall": "husky && prisma generate && node scripts/collect-assets",
"dev": "next dev",
"prebuild": "yarn generate-sitemap-pages",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test:spellcheck": "spellchecker",
"generate-sitemap-pages": "node scripts/build-sitemap",
"format:check": "prettier --check src",
"format:fix": "prettier --write src",
"cypress": "cypress open",
"cypress:fixtures": "node scripts/cypress-fixtures.mjs",
"cypress:build": "yarn build && yarn cypress:fixtures",
"lint-staged": "lint-staged"
},
"browserslist": "defaults, not ie <= 11",
"dependencies": {
"@algolia/autocomplete-core": "^1.7.3",
"@docsearch/react": "^3.6.1",
"@headlessui/react": "^2.1.0",
"@headlessui/tailwindcss": "^0.2.0",
"@heroicons/react": "^2.1.5",
"@mdx-js/loader": "^3.0.0",
"@mdx-js/react": "^3.0.0",
"@next/mdx": "^14.0.4",
"@prisma/client": "^5.20.0",
"@radix-ui/react-accordion": "^1.2.0",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-collapsible": "^1.1.0",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-navigation-menu": "^1.2.0",
"@radix-ui/react-radio-group": "^1.2.0",
"@radix-ui/react-scroll-area": "^1.1.0",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"@sindresorhus/slugify": "^2.1.1",
"@tailwindcss/typography": "^0.5.10",
"@types/mdx": "^2.0.8",
"@types/node": "^20.10.8",
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"@types/react-highlight-words": "^0.16.4",
"acorn": "^8.8.1",
"autoprefixer": "^10.4.7",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"codehike": "^1.0.2",
"contentlayer2": "^0.5.1",
"fathom-client": "^3.7.2",
"framer-motion": "^10.18.0",
"hast-util-from-html-isomorphic": "^2.0.0",
"lucide-react": "^0.445.0",
"mdast-util-to-string": "^4.0.0",
"mdx-annotations": "^0.1.1",
"next": "^14.2.15",
"next-contentlayer2": "^0.5.1",
"next-themes": "^0.3.0",
"radash": "^12.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-highlight-words": "^0.20.0",
"react-icons": "^5.3.0",
"rehype-autolink-headings": "^7.1.0",
"remark": "^15.0.1",
"remark-gfm": "^4.0.0",
"remark-mdx": "^3.0.0",
"simple-functional-loader": "^1.2.1",
"slugify": "^1.6.6",
"tailwind-merge": "^2.5.2",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.3.3",
"unist-util-filter": "^5.0.1",
"unist-util-visit": "^5.0.0",
"zustand": "^4.3.2"
},
"devDependencies": {
"cypress": "^13.15.0",
"cypress-axe": "^1.5.0",
"eslint": "^8.56.0",
"eslint-config-next": "^14.0.4",
"fast-xml-parser": "^4.5.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.5",
"prisma": "^5.20.0",
"remark-frontmatter": "^5.0.0",
"sharp": "0.33.1",
"spellchecker-cli": "^6.2.0"
}
}