-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.27 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.27 KB
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
{
"name": "threadly",
"version": "1.0.0",
"description": "app like reddit",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": " ts-node-dev --respawn --transpile-only src/index.ts",
"start": "node dist/index.js",
"prisma": "prisma",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/f0rsakeN-afk/Threadly.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/f0rsakeN-afk/Threadly/issues"
},
"homepage": "https://github.com/f0rsakeN-afk/Threadly#readme",
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cookie-parser": "^1.4.9",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^24.0.3",
"@types/nodemailer": "^6.4.17",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.3"
},
"dependencies": {
"@prisma/client": "^6.10.1",
"bcryptjs": "^3.0.2",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"express-rate-limit": "^7.5.1",
"jsonwebtoken": "^8.5.1",
"nodemailer": "^7.0.4",
"prisma": "^6.10.1",
"zod": "^3.25.67"
}
}