-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 948 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
30
31
32
33
34
35
36
37
38
39
{
"name": "blognest",
"version": "1.0.0",
"source": "./public/js/script.js",
"main": "./public/js/bundle.js",
"scripts": {
"dev": "nodemon app.js",
"start": "node app.js",
"watch:js": "parcel watch ./public/js/script.js",
"build:js": "parcel build ./public/js/script.js --cache-dir .parcel-cache"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"description": "",
"dependencies": {
"axios": "^1.7.7",
"bcrypt": "^5.1.1",
"cloudinary": "^2.5.1",
"compression": "^1.7.5",
"connect-mongo": "^5.1.0",
"ejs": "^3.1.10",
"express": "^4.21.1",
"express-session": "^1.18.1",
"highlight.js": "^11.10.0",
"markdown-it": "^14.1.0",
"markdown-it-link-attributes": "^4.0.1",
"mongoose": "^8.8.0"
},
"devDependencies": {
"dotenv": "^16.4.5",
"nodemon": "^3.1.7",
"parcel": "^2.13.3"
},
"engines": {
"node": ">=16.x",
"npm": ">=7.x"
}
}