-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
106 lines (106 loc) · 3.63 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
103
104
105
106
{
"name": "quill",
"private": true,
"scripts": {
"lint": "prettier --write app/javascript/**/*.{tsx,ts,js,gql}",
"lint-check": "prettier --check app/javascript/**/*.{tsx,ts,js,gql}",
"build:css": "tailwindcss -i ./app/assets/stylesheets/application.tailwind.css -o ./app/assets/builds/application.css",
"build": "node esbuild.config.js",
"build:css:watch": "tailwindcss -i ./app/assets/stylesheets/application.tailwind.css -o ./app/assets/builds/application.css --watch",
"build:watch": "node esbuild.config.js --watch"
},
"version": "0.1.0",
"dependencies": {
"@coinbase/wallet-sdk": "^4.0.3",
"@hotwired/stimulus": "^3.2.2",
"@hotwired/turbo-rails": "^8.0.4",
"@metamask/detect-provider": "^2.0.0",
"@milkdown/core": "^7.3.6",
"@milkdown/ctx": "^7.3.6",
"@milkdown/plugin-block": "^7.3.6",
"@milkdown/plugin-clipboard": "^7.3.6",
"@milkdown/plugin-cursor": "^7.3.6",
"@milkdown/plugin-emoji": "^7.3.6",
"@milkdown/plugin-history": "^7.3.6",
"@milkdown/plugin-indent": "^7.3.6",
"@milkdown/plugin-listener": "^7.3.6",
"@milkdown/plugin-slash": "^7.3.6",
"@milkdown/plugin-tooltip": "^7.3.6",
"@milkdown/plugin-upload": "^7.3.6",
"@milkdown/preset-commonmark": "^7.3.6",
"@milkdown/preset-gfm": "^7.3.6",
"@milkdown/prose": "^7.3.6",
"@milkdown/theme-nord": "^7.3.6",
"@milkdown/transformer": "^7.3.6",
"@rails/activestorage": "^7.1.3-4",
"@rails/request.js": "^0.0.9",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/line-clamp": "^0.4.4",
"@tailwindcss/typography": "^0.5.13",
"@tiptap/core": "^2.4.0",
"@tiptap/extension-bubble-menu": "^2.4.0",
"@tiptap/extension-code-block-lowlight": "^2.4.0",
"@tiptap/extension-dropcursor": "^2.4.0",
"@tiptap/extension-floating-menu": "^2.4.0",
"@tiptap/extension-gapcursor": "^2.4.0",
"@tiptap/extension-highlight": "^2.4.0",
"@tiptap/extension-image": "^2.4.0",
"@tiptap/extension-link": "^2.4.0",
"@tiptap/extension-placeholder": "^2.4.0",
"@tiptap/extension-typography": "^2.4.0",
"@tiptap/extension-underline": "^2.4.0",
"@tiptap/pm": "^2.4.0",
"@tiptap/starter-kit": "^2.4.0",
"@walletconnect/ethereum-provider": "^2.13.3",
"@walletconnect/modal": "^2.6.2",
"abortcontroller-polyfill": "^1.7.5",
"autoprefixer": "^10.4.19",
"axios": "^1.7.2",
"babel-plugin-import": "^1.13.8",
"babel-plugin-macros": "^3.1.0",
"bignumber.js": "^9.1.2",
"buffer": "^6.0.3",
"dayjs": "^1.11.11",
"esbuild": "^0.21.5",
"esbuild-plugin-polyfill-node": "^0.3.0",
"highlight.js": "^11.9.0",
"json-rpc-engine": "^6.1.0",
"lowlight": "^3.1.0",
"mixin-messenger-utils": "^0.1.5",
"photoswipe": "^5.4.4",
"postcss": "^8.4.38",
"postcss-import": "^16.1.0",
"process": "^0.11.10",
"prosemirror-commands": "^1.5.2",
"prosemirror-dropcursor": "^1.8.1",
"prosemirror-gapcursor": "^1.3.2",
"prosemirror-history": "^1.4.0",
"prosemirror-keymap": "^1.2.2",
"prosemirror-markdown": "^1.13.0",
"prosemirror-schema-list": "^1.4.0",
"punycode": "^2.3.1",
"puppeteer": "^22.11.0",
"qrcode": "^1.5.3",
"stimulus-use": "^0.52.2",
"tailwind-scrollbar-hide": "^1.1.7",
"tailwindcss": "^3.4.4",
"tippy.js": "^6.3.7",
"tiptap-markdown": "^0.8.10",
"tom-select": "^2.3.1",
"typescript": "^5.4.5",
"underscore": "^1.13.6",
"web3": "4.9.0"
},
"devDependencies": {
"prettier": "^3.3.2"
},
"browserslist": [
"defaults"
],
"browser": {},
"engines": {
"node": ">=18"
},
"packageManager": "yarn@1.22.19"
}