-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.5 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
{
"name": "instagram-clone-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node dist/app.js",
"dev": "ts-node-dev -r tsconfig-paths/register --respawn --pretty --transpile-only src/app.ts",
"build": "npm run build:swc",
"build:swc": "swc src -d dist",
"lint": "eslint --ext .ts src",
"lint:fix": "eslint --ext .ts src --fix"
},
"author": "Rahul Ranjan",
"license": "ISC",
"devDependencies": {
"@swc/cli": "^0.1.57",
"@swc/core": "^1.3.29",
"@types/bcryptjs": "^2.4.2",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.16",
"@types/jsonwebtoken": "^9.0.1",
"@types/morgan": "^1.9.4",
"@types/multer": "^1.4.7",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "^8.32.0",
"prettier": "^2.8.3",
"ts-node-dev": "^2.0.0",
"tsc-alias": "^1.8.2",
"tsconfig-paths": "^4.1.2",
"typescript": "^4.9.4"
},
"dependencies": {
"@azure/storage-blob": "^12.12.0",
"axios": "^1.2.5",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^9.0.0",
"mailgun.js": "^8.0.6",
"mongoose": "^6.9.0",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"socket.io": "^4.6.1",
"tslib": "^2.5.0",
"zod": "^3.20.2"
}
}