-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
93 lines (93 loc) · 2.77 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
{
"name": "cairovm.codes",
"version": "0.1.0",
"description": "An interactive reference to Cairo Virtual Machine",
"homepage": "https://github.com/walnuthq/cairovm.codes",
"license": "MIT",
"scripts": {
"build": "next build",
"dev": "next dev",
"lint": "eslint --ext js,jsx,ts,tsx --max-warnings=0 .",
"lint:fix": "eslint --ext js,jsx,ts,tsx --max-warnings=0 --fix .",
"lint:package": "sort-package-json",
"typecheck": "tsc --pretty"
},
"resolutions": {
"@types/react": "17.0.2",
"@types/react-dom": "17.0.2"
},
"dependencies": {
"@kunigi/string-compression": "1.0.2",
"@mdx-js/loader": "^2.3.0",
"@mdx-js/react": "^2.3.0",
"@monaco-editor/react": "^4.6.0",
"@next/third-parties": "^14.1.0",
"@remixicon/react": "^4.2.0",
"@types/bn.js": "^5.1.5",
"assert": "^2.0.0",
"babel-preset-es2020": "^1.0.1",
"bn.js": "^5.2.1",
"clsx": "^2.1.0",
"copy-to-clipboard": "^3.3.1",
"events": "^3.3.0",
"gray-matter": "^4.0.3",
"highlight.js": "^11.3.1",
"highlightjs-cairo": "^0.4.0",
"kbar": "^0.1.0-beta.45",
"lodash.debounce": "^4.0.8",
"lz-string": "^1.5.0",
"monaco-editor": "^0.47.0",
"monaco-editor-core": "^0.47.0",
"next": "13",
"next-mdx-remote": "^4.4.1",
"next-themes": "^0.1.1",
"process": "^0.11.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-select": "^5.8.0",
"react-table": "^7.8.0",
"react-tooltip": "^4.2.21",
"react-use-id": "^1.0.0",
"react-virtuoso": "^4.7.7",
"tailwind-merge": "^2.2.2",
"vercel": "^32.3.0",
"wrangler": "^3.24.0"
},
"devDependencies": {
"@babel/core": "^7.19.1",
"@babel/preset-env": "^7.19.1",
"@cloudflare/next-on-pages": "^1.8.5",
"@next/eslint-plugin-next": "^12.0.7",
"@swc/core": "^1.3.1",
"@types/debug": "^4.1.7",
"@types/js-cookie": "^3.0.1",
"@types/lodash.debounce": "^4.0.6",
"@types/mdx-js__react": "^1.5.5",
"@types/react": "^18.2.67",
"@types/react-table": "^7.7.6",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"autoprefixer": "^10.4.7",
"babel-loader": "^9.1.2",
"eslint": "7.32.0",
"eslint-config-next": "13",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.2",
"loader-utils": "^2.0.4",
"next-images": "^1.8.5",
"nstall": "^0.2.0",
"postcss": "^8.4.14",
"prettier": "^2.4.1",
"sort-package-json": "^1.52.0",
"swc-loader": "^0.2.3",
"tailwindcss": "^3.1.2",
"tinyify": "^3.1.0",
"ts-loader": "^9.3.1",
"typescript": "^4.4.4",
"webpack": "^5.81.0"
}
}