-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.15 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
{
"name": "literate-engine",
"version": "1.0.0",
"main": "src/index.ts",
"scripts": {
"start": "node dist/app.js",
"watch": "tsc -w",
"server": "nodemon dist/app.js",
"dev": "concurrently \"npm run watch\" \"npm run server\"",
"prisma:generate": "npx prisma generate",
"prisma:migrate": "npx prisma migrate deploy",
"build": "npm run prisma:generate && npm run prisma:migrate && tsc -b"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.8",
"@types/node": "^22.13.4",
"@types/nodemailer": "^6.4.17",
"@types/randomstring": "^1.3.0",
"concurrently": "^9.1.2",
"nodemon": "^3.1.9",
"prisma": "^6.4.1",
"ts-node": "^10.9.2",
"tsx": "^4.19.3",
"typescript": "^5.7.3"
},
"dependencies": {
"@prisma/client": "^6.4.1",
"axios": "^1.7.9",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"googleapis": "^144.0.0",
"jsonwebtoken": "^9.0.2",
"nodemailer": "^6.10.0",
"randomstring": "^1.3.1",
"zod": "^3.24.2"
}
}