-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 996 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 996 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "thoughtthread",
"version": "1.0.0",
"description": "A modern blogging platform with an Apple-inspired design",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"setup": "npm install && echo 'Setup complete! Run npm run dev to start the development server.'",
"build": "next build"
},
"keywords": [
"blog",
"nodejs",
"express",
"mongodb",
"ejs"
],
"author": "",
"license": "MIT",
"dependencies": {
"bcrypt": "^5.1.1",
"connect-mongo": "^5.1.0",
"dompurify": "^3.0.8",
"dotenv": "^16.4.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-flash": "^0.0.2",
"express-session": "^1.18.1",
"jsdom": "^24.0.0",
"marked": "^11.2.0",
"method-override": "^3.0.0",
"mongoose": "^8.1.1",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"slugify": "^1.6.6",
"next": "^12.0.0"
},
"devDependencies": {
"nodemon": "^3.0.3"
}
}