-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.72 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
{
"name": "social-media-app1",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch --runInBand",
"lint:watch": "eslint-watch src/**/*.ts",
"start": "node dist/index.js",
"dev": "nodemon src/index.ts",
"build": "npx tsc"
},
"keywords": [
"node",
"typescript",
"express",
"mongoose"
],
"author": "sreerag <msratofficial@gmail.com>",
"license": "ISC",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.0",
"@types/morgan": "^1.9.4",
"@types/node": "^18.15.3",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"eslint": "^8.36.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.5.0",
"mongodb-memory-server": "^8.12.2",
"nodemon": "^2.0.21",
"portfinder": "^1.0.32",
"prettier": "^2.8.5",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.633.0",
"@types/cookie-parser": "^1.4.3",
"@types/multer": "^1.4.7",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.21.1",
"express-async-errors": "^3.1.1",
"google-auth-library": "^8.7.0",
"http-status-codes": "^2.2.0",
"joi": "^17.8.4",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.3.3",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"uuid": "^9.0.0"
}
}