-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 1007 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
{
"name": "flask-blog",
"version": "1.0.0",
"description": "My personal blog",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx tailwindcss -i styles.css -o blogserver/static/style.css -w",
"bundle": "esbuild script.js --bundle --sourcemap --watch --outfile=./blogserver/static/script.js ",
"bundle-prod": "esbuild script.js --bundle --outfile=./blogserver/static/script.js "
},
"author": "Paul Akinyemi",
"license": "ISC",
"dependencies": {
"@hotwired/stimulus": "^3.0.1",
"@tailwindcss/forms": "^0.3.4",
"@tailwindcss/typography": "^0.4.1",
"@tiptap/core": "^2.0.0-beta.125",
"@tiptap/extension-image": "^2.0.0-beta.19",
"@tiptap/extension-link": "^2.0.0-beta.23",
"@tiptap/extension-underline": "^2.0.0-beta.16",
"@tiptap/starter-kit": "^2.0.0-beta.127",
"daisyui": "^1.14.6",
"esbuild": "^0.13.8",
"tailwindcss": "^2.2.17"
},
"devDependencies": {},
"keywords": []
}