-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 872 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 872 Bytes
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
{
"name": "commentions",
"type": "module",
"scripts": {
"dev:scripts": "node bin/build.js --dev",
"build:scripts": "node bin/build.js",
"dev:styles": "npx @tailwindcss/cli -i ./resources/css/commentions.css -o ./resources/dist/commentions.css --watch",
"build:styles": "npx @tailwindcss/cli -i ./resources/css/commentions.css -o ./resources/dist/commentions.css --minify",
"dev": "npm-run-all --parallel dev:*",
"build": "npm-run-all build:*"
},
"dependencies": {
"@tailwindcss/cli": "^4.0.6",
"@tiptap/core": "^2.11.2",
"@tiptap/extension-mention": "^2.11.2",
"@tiptap/extension-placeholder": "^2.11.2",
"@tiptap/pm": "^2.11.2",
"@tiptap/starter-kit": "^2.11.2",
"@tiptap/suggestion": "^2.11.2",
"alpinejs": "^3.14.8",
"esbuild": "^0.24.2",
"npm-run-all": "^4.1.5",
"tippy.js": "^6.3.7"
}
}