forked from mahakagarwal7/Project-Twitter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 991 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 991 Bytes
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
{
"name": "project-twitter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mahakagarwal7/Project-Twitter.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"bugs": {
"url": "https://github.com/mahakagarwal7/Project-Twitter/issues"
},
"homepage": "https://github.com/mahakagarwal7/Project-Twitter#readme",
"devDependencies": {
"@types/bcrypt": "^6.0.0",
"@types/express": "^5.0.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.0.3",
"@types/pg": "^8.16.0",
"ts-node-dev": "^2.0.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"dependencies": {
"bcrypt": "^6.0.0",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"jsonwebtoken": "^9.0.3",
"pg": "^8.16.3",
"redis": "^5.10.0"
}
}