-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.43 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
{
"name": "socialmedia",
"version": "1.0.0",
"description": "API for social media project",
"main": "index.js",
"scripts": {
"dev": "tsx watch ./src/main.ts",
"test": "jest --forceExit"
},
"keywords": [],
"author": "Matheus Kiyoshi",
"license": "ISC",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.14",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.4",
"@types/jsonwebtoken": "^9.0.2",
"@types/mime": "^3.0.1",
"@types/multer": "^1.4.7",
"@types/node": "^20.6.0",
"@types/nodemailer": "^6.4.10",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.6.4",
"prettier": "^3.0.3",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"tsx": "^3.12.8",
"typescript": "^5.2.2"
},
"dependencies": {
"axios": "^1.5.0",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"firebase-admin": "^11.10.1",
"jsonwebtoken": "^9.0.2",
"mime": "^3.0.0",
"mongodb": "^6.0.0",
"mongoose": "^7.5.0",
"multer": "^1.4.5-lts.1",
"multer-firebase-storage": "^4.1.2",
"nodemailer": "^6.9.5",
"nodemon": "^3.0.1"
}
}