forked from vinigoess/depindd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.7 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
{
"name": "depin-dd",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "pnpm validate && next-sitemap",
"validate": "ts-node ./src/scripts/validate.ts",
"start": "next start -p 3002",
"lint": "next lint",
"prepare": "husky install"
},
"browserslist": "defaults, not ie <= 11",
"dependencies": {
"@docsearch/react": "3.3.3",
"@headlessui/react": "1.7.13",
"@heroicons/react": "2.0.16",
"@markdoc/markdoc": "0.2.2",
"@markdoc/next.js": "0.2.2",
"@sindresorhus/slugify": "2.2.0",
"@tailwindcss/forms": "0.5.3",
"@tailwindcss/typography": "0.5.9",
"@vercel/analytics": "0.1.11",
"ajv": "8.12.0",
"autoprefixer": "10.4.14",
"clsx": "1.2.1",
"color": "4.2.3",
"date-fns": "2.29.3",
"focus-visible": "5.2.0",
"glob": "9.3.2",
"gray-matter": "4.0.3",
"next": "13.2.4",
"next-sitemap": "4.0.6",
"postcss": "8.4.21",
"postcss-focus-visible": "8.0.2",
"postcss-import": "15.1.0",
"rc-tooltip": "6.0.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-table": "7.8.0",
"rss-parser": "3.12.0",
"tailwindcss": "3.3.0",
"typescript": "5.0.2"
},
"devDependencies": {
"@types/color": "3.0.3",
"@types/node": "18.15.10",
"@types/react": "18.0.30",
"@types/react-dom": "18.0.11",
"@types/react-table": "7.7.14",
"eslint": "8.36.0",
"eslint-config-next": "13.2.4",
"husky": "8.0.3",
"lint-staged": "13.2.0",
"prettier": "2.8.7",
"prettier-plugin-tailwindcss": "0.2.5",
"sharp": "0.32.0",
"ts-node": "10.9.1"
},
"lint-staged": {
"*.{js,ts,tsx,json,css,md}": "prettier --write"
}
}