-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 915 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": "blog-app",
"version": "1.0.0",
"description": "This is a blog app to post a blog and view blogs",
"main": "index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon index.ts",
"build": "tsc"
},
"keywords": [
"blog-app",
"typescript",
"react",
"MERN"
],
"author": "Prashant Srivastav",
"license": "MIT",
"dependencies": {
"@types/express": "^4.17.21",
"@types/mongoose": "^5.11.97",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.3.2",
"nodemailer": "^6.9.13",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.5"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/jsonwebtoken": "^9.0.6",
"@types/nodemailer": "^6.4.14",
"nodemon": "^3.1.0"
}
}