-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.47 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.47 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
50
51
52
{
"name": "smart-ticketer-backend",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon --exec node --trace-warnings -r tsconfig-paths/register --loader ts-node/esm ./src/index.ts",
"db:generate": "drizzle-kit generate:pg --schema ./src/db/schema/* --out ./drizzle",
"db:migrate": "tsc ./migrate.ts && node ./migrate.js",
"db:migratetsx": "tsx ./migrate.ts",
"push": "drizzle-kit push:pg",
"drop": "drizzle-kit drop"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@neondatabase/serverless": "^0.9.0",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"crockford-base32": "^2.0.0",
"csrf-csrf": "^3.0.6",
"decimal.js": "^10.5.0",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.30.4",
"email-validator": "^2.0.4",
"express": "^4.19.2",
"express-validator": "^7.1.0",
"handlebars": "^4.7.8",
"jsonwebtoken": "^9.0.2",
"nanoid": "^5.1.0",
"nodemailer": "^6.9.13",
"otpauth": "^9.3.5",
"redis": "^4.7.0",
"socket.io": "^4.8.0",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.7.2",
"winston": "^3.14.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/nodemailer": "^6.4.15",
"drizzle-kit": "^0.20.14",
"nodemon": "^3.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}