-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.59 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
{
"name": "blogapi",
"version": "1.0.0",
"description": "An api created to make bloggers more flexible in managing blogs",
"main": "src/index.ts",
"scripts": {
"build": "rm -rf dist && tsc",
"start": "node dist/index.js",
"dev": "nodemon src/index.ts",
"test": "jest test/user/loginUser.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Success0452/BlogApi.git"
},
"keywords": [
"Blog"
],
"author": "Olatunde Success",
"license": "ISC",
"bugs": {
"url": "https://github.com/Success0452/BlogApi/issues"
},
"homepage": "https://github.com/Success0452/BlogApi#readme",
"dependencies": {
"@types/jsonwebtoken": "^9.0.2",
"bcryptjs": "^2.4.3",
"cloudinary": "^1.40.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"http-status-codes": "^2.2.0",
"joi": "^17.10.1",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.4",
"nodemon": "^3.0.1",
"pg": "^8.11.3",
"sequelize": "^6.32.1",
"sequelize-typescript": "^2.1.5",
"ts-node": "^10.9.1",
"winston": "^3.10.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.3",
"@types/compression": "^1.7.3",
"@types/cors": "^2.8.14",
"@types/jest": "^29.5.4",
"@types/morgan": "^1.9.5",
"@types/multer": "^1.4.7",
"@types/node": "^20.5.9",
"@types/pg": "^8.10.2",
"@types/sequelize": "^4.28.15",
"@types/supertest": "^2.0.12",
"jest": "^29.6.4",
"supertest": "^6.3.3",
"typescript": "^5.2.2"
}
}