-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 985 Bytes
/
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
{
"name": "allo-v2-docs",
"version": "0.0.1",
"description": "Documentation for the second version of Gitcoin's Allo Protocol",
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"format": "remark . --output"
},
"dependencies": {
"next": "^14.0.4",
"next-sitemap": "^4.2.3",
"nextra": "^2.13.2",
"nextra-theme-docs": "^2.13.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"autoprefixer": "^10.4.14",
"postcss": "^8.4.27",
"remark-cli": "^11.0.0",
"remark-frontmatter": "^4.0.1",
"remark-lint-maximum-line-length": "^3.1.3",
"remark-preset-lint-consistent": "^5.1.2",
"remark-preset-lint-recommended": "^6.1.3",
"tailwindcss": "^3.3.3",
"typescript": "5.1.6"
},
"remarkConfig": {
"settings": {},
"plugins": [
"remark-preset-lint-consistent",
"remark-preset-lint-recommended",
"remark-frontmatter",
"remark-lint-maximum-line-length"
]
}
}