-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.68 KB
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
{
"name": "nyasablog",
"version": "1.0.0",
"description": "A digital platform dedicated to promoting positive content created by Malawian content creators and influencers. NyasaBlog aims to be the most trusted source for Malawian content in the areas of Culture, Entertainment, Entrepreneurship, Tourism, Technology, Sports, Lifestyle, Education, Health, and Opinion.",
"main": "index.js",
"scripts": {
"build:css": "npx tailwindcss -i static/src/input.css -o static/css/tailwind.min.css --minify",
"watch:css": "npx tailwindcss -i static/src/input.css -o static/css/tailwind.min.css --watch",
"build:editor": "esbuild src/tiptap/index.js --bundle --minify --target=es2020 --outfile=static/blog/tiptap.js",
"build": "npm run build:css && npm run build:editor",
"test:js": "vitest run --environment jsdom"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kanyandula/BlogPost.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Kanyandula/BlogPost/issues"
},
"homepage": "https://github.com/Kanyandula/BlogPost#readme",
"devDependencies": {
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/typography": "^0.5.19",
"@vitest/coverage-v8": "^4.1.6",
"esbuild": "^0.28.0",
"jsdom": "^25.0.1",
"tailwindcss": "3.4.19",
"vitest": "^4.1.6"
},
"dependencies": {
"@tiptap/core": "^2.27.2",
"@tiptap/extension-bubble-menu": "^2.27.2",
"@tiptap/extension-link": "^2.27.2",
"@tiptap/extension-placeholder": "^2.27.2",
"@tiptap/extension-underline": "^2.27.2",
"@tiptap/starter-kit": "^2.27.2",
"@tiptap/suggestion": "^2.27.2",
"marked": "^14.1.4"
}
}