-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 951 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 951 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
{
"name": "blog-app",
"version": "1.0.0",
"description": "App to display and create blogs",
"main": "index.js",
"scripts": {
"test": "npm run test",
"deploy": "npm install && rm -rf ./views/build && cd ./views/ && npm install && npm run build && cp -r build ../",
"start-prod": "node index.js",
"start-dev": "nodemon index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vinayaka2k/MyBlogApp.git"
},
"author": "Vinayaka2k",
"license": "ISC",
"bugs": {
"url": "https://github.com/Vinayaka2k/MyBlogApp/issues"
},
"homepage": "https://github.com/Vinayaka2k/MyBlogApp#readme",
"dependencies": {
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jsonwebtoken": "^8.5.1",
"loadash": "^1.0.0",
"lodash": "^4.17.21",
"mongoose": "^6.6.5",
"morgan": "^1.10.0",
"nodemon": "^2.0.20",
"path": "^0.12.7"
}
}