-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
78 lines (78 loc) · 2.29 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "blogminds",
"version": "1.0.0",
"description": "a simple blogging website",
"main": "server.js",
"scripts": {
"build": "npx tsc",
"start": "node dist/server.js",
"dev": "nodemon --ignore 'client/*' server.ts",
"format": "prettier --write . && cd client && prettier --write .",
"seeder": "node DBseeder/seeder.js",
"get-blogs-by-each-user": "ts-node ./DBseeder/dev-utils/get-blogs-by-each-user.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aslezar/BlogMinds.git"
},
"workspaces": [
"client"
],
"keywords": [
"blog"
],
"author": "shivam",
"license": "ISC",
"bugs": {
"url": "https://github.com/aslezar/BlogMinds/issues"
},
"homepage": "https://github.com/aslezar/BlogMinds#readme",
"dependencies": {
"axios": "^1.6.8",
"bcryptjs": "^2.4.3",
"cloudinary": "^2.0.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express": "^4.18.3",
"express-async-errors": "^3.1.1",
"express-rate-limit": "^6.11.2",
"helmet": "^7.1.0",
"http-status-codes": "^2.3.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.2.2",
"morgan": "^1.10.0",
"multer": "1.4.5-lts.1",
"natural": "^6.12.0",
"node-wordnet": "^0.1.12",
"nodemailer": "^6.9.12",
"uuid": "^9.0.1",
"wndb-with-exceptions": "^3.0.2"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@types/bcryptjs": "^2.4.6",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.11",
"@types/node": "^20.11",
"@types/nodemailer": "^6.4.14",
"@types/uuid": "^9.0.8",
"dotenv": "^16.4.5",
"google-auth-library": "^9.9.0",
"node-cache": "^5.1.2",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.2"
},
"prettier": {
"semi": false,
"singleQuote": false,
"trailingComma": "all",
"jsxSingleQuote": false,
"tabWidth": 4,
"formatOnSave": true
}
}