-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 823 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 823 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
26
27
{
"name": "4.5-cp3-blog-web-app-byteblog",
"version": "1.0.0",
"type": "module",
"description": "ByteBlog, a simple Node/Express.js blog web app created as part of my web dev Udemy capstone project, allowing users to create, view, edit, and delete posts with responsive styling, no database required.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "vite",
"build": "vite build",
"start": "nodemon app.js"
},
"keywords": [],
"author": "Lekan Sausdev",
"license": "ISC",
"dependencies": {
"@tailwindcss/vite": "^4.1.11",
"ejs": "^3.1.10",
"express": "^5.1.0"
},
"devDependencies": {
"autoprefixer": "^10.4.21",
"postcss": "^8.5.6",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "^4.1.11"
}
}