-
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) · 1.02 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.02 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
{
"name": "email-server",
"version": "1.0.0",
"main": "dist/index.js",
"type": "commonjs",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "npm run build && npm run start",
"tsoa:spec": "tsoa spec",
"tsoa:routes": "tsoa routes"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pricetra/email-server.git"
},
"author": "Ayaan Siddiqui",
"license": "ISC",
"bugs": {
"url": "https://github.com/pricetra/email-server/issues"
},
"homepage": "https://github.com/pricetra/email-server#readme",
"description": "",
"dependencies": {
"dotenv": "^17.2.3",
"express": "^5.1.0",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"resend": "^6.1.2",
"swagger-ui-express": "^5.0.1",
"tsoa": "^6.6.0",
"typescript": "^5.9.3"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/jsonwebtoken": "^9.0.10",
"@types/lodash": "^4.17.20",
"@types/node": "^24.6.2",
"@types/swagger-ui-express": "^4.1.8"
}
}