-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.71 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.71 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
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
{
"name": "inscript",
"version": "2.1.0",
"description": "A modern, plug-and-play CMS for markdown-based blogs. Built with React, Vite, and Express.",
"author": "Harsh Ankur <harshankur@outlook.com>",
"license": "MIT",
"homepage": "https://inscript.harshankur.com",
"repository": {
"type": "git",
"url": "git+https://github.com/harshankur/inscript.git"
},
"bugs": {
"url": "https://github.com/harshankur/inscript/issues"
},
"keywords": [
"cms",
"blog",
"markdown",
"editor",
"react",
"vite",
"tiptap",
"headless-cms"
],
"main": "server.js",
"files": [
"src",
"dist",
"scripts",
"docs",
"server.js",
"vite.config.js",
"index.html",
"tailwind.config.js",
"postcss.config.js",
"README.md",
"LICENSE"
],
"type": "module",
"scripts": {
"build:demo": "cross-env DEMO_MODE=true npm run setup && vite build --mode demo && mv docs/index.html docs/inscript_demo.html && mv docs/assets/landing_source.html docs/index.html",
"build": "vite build",
"client": "vite --host",
"dev": "npm run setup && concurrently \"npm run server\" \"npm run client\"",
"prepare": "husky",
"preview": "vite preview",
"publish": "vite build --mode readonly && node scripts/generate-data.js && node scripts/generate-sitemap.js",
"server": "node --watch server.js",
"setup": "node scripts/setup-inscript.js",
"start": "npm run dev"
},
"dependencies": {
"@tiptap/extension-color": "^3.20.4",
"@tiptap/extension-highlight": "^3.20.4",
"@tiptap/extension-image": "^3.20.4",
"@tiptap/extension-subscript": "^3.20.4",
"@tiptap/extension-superscript": "^3.20.4",
"@tiptap/extension-text-align": "^3.20.4",
"@tiptap/extension-text-style": "^3.20.4",
"@tiptap/extension-underline": "^3.20.4",
"@tiptap/pm": "^3.20.4",
"@tiptap/react": "^3.20.4",
"@tiptap/starter-kit": "^3.20.4",
"axios": "^1.13.6",
"bcryptjs": "^3.0.3",
"concurrently": "^9.2.1",
"cors": "^2.8.6",
"diff": "^8.0.3",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"express-session": "^1.19.0",
"fs-extra": "^11.3.4",
"gray-matter": "^4.0.3",
"i18next": "^25.10.5",
"i18next-browser-languagedetector": "^8.2.1",
"lucide-react": "^0.577.0",
"marked": "^17.0.5",
"multer": "^2.1.1",
"passport": "^0.7.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-i18next": "^16.6.2",
"turndown": "^7.2.2"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.2.2",
"@vitejs/plugin-react": "^6.0.1",
"autoprefixer": "^10.4.27",
"cross-env": "^10.1.0",
"husky": "^9.1.7",
"postcss": "^8.5.8",
"tailwindcss": "^4.2.2",
"vite": "^8.0.1"
}
}