-
Notifications
You must be signed in to change notification settings - Fork 445
/
package.json
61 lines (61 loc) · 2.09 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
{
"name": "op-docs",
"version": "0.0.1",
"description": "Optimism Docs",
"packageManager": "pnpm@9.1.0",
"scripts": {
"lint": "eslint . --ext mdx --max-warnings 0 && pnpm spellcheck:lint",
"fix": "eslint . --ext mdx --fix && pnpm spellcheck:fix",
"spellcheck:lint": "cspell lint \"**/*.mdx\"",
"spellcheck:fix": "cspell --words-only --unique \"**/*.mdx\" | sort --ignore-case | uniq > words.txt",
"linkcheck": "lychee --config ./lychee.toml --quiet \"./pages\"",
"dev": "next dev",
"build": "next build",
"start": "next start",
"postbuild": "next-sitemap"
},
"dependencies": {
"@eth-optimism/contracts-ts": "^0.17.0",
"@eth-optimism/tokenlist": "^9.0.9",
"@feelback/react": "^0.3.4",
"next": "14.1.1",
"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": {
"@double-great/remark-lint-alt-text": "^1.0.0",
"@eth-optimism/core-utils": "^0.13.1",
"@eth-optimism/sdk": "^3.1.6",
"@types/node": "18.11.10",
"cspell": "^8.1.3",
"eslint": "^8.53.0",
"eslint-plugin-mdx": "^2.2.0",
"ethers": "^5",
"remark": "^15.0.1",
"remark-code-import": "^1.2.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^3.0.1",
"remark-lint-frontmatter-schema": "^3.15.4",
"remark-lint-heading-style": "^3.1.2",
"remark-lint-list-item-indent": "^3.1.2",
"remark-lint-table-cell-padding": "^4.1.3",
"remark-lint-table-pipe-alignment": "^3.1.3",
"remark-lint-table-pipes": "^4.1.2",
"remark-lint-unordered-list-marker-style": "^3.1.2",
"remark-preset-lint-consistent": "^5.1.2",
"remark-preset-lint-recommended": "^6.1.3",
"typescript": "^5.2.2",
"unified-lint-rule": "^2.1.2",
"unist-util-visit": "^5.0.0"
},
"pnpm": {
"patchedDependencies": {
"remark-lint-frontmatter-schema@3.15.4": "patches/remark-lint-frontmatter-schema@3.15.4.patch",
"remark-code-import@1.2.0": "patches/remark-code-import@1.2.0.patch",
"nextra@2.13.2": "patches/nextra@2.13.2.patch"
}
}
}