-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.34 KB
/
package.json
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "dist/app.js",
"type": "module",
"engines": {
"node": ">=18.19.0"
},
"scripts": {
"start": "node dist/app.js",
"build": "rimraf dist && tsc",
"dev": "tsx watch src/app.ts",
"staging": "cross-env NODE_ENV=staging tsx watch src/app.ts",
"staging:prod": "npm run build && cross-env NODE_ENV=staging node dist/app.js",
"production": "npm run build && cross-env NODE_ENV=production node dist/app.js",
"clean": "rimraf dist",
"lint": "gts lint",
"fix": "gts fix",
"prepare": "npm run build",
"migrate": "sequelize-cli db:migrate",
"migrate:undo": "sequelize-cli db:migrate:undo",
"migrate:undo:all": "sequelize-cli db:migrate:undo:all",
"migrate:create": "sequelize-cli migration:create --name"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@ctrl/ts-base32": "^4.0.0",
"@google-cloud/recaptcha-enterprise": "^5.13.0",
"@types/adm-zip": "^0.5.7",
"@types/cli-progress": "^3.11.6",
"@types/multer": "^1.4.12",
"@types/socket.io": "^3.0.2",
"@types/uuid": "^10.0.0",
"adm-zip": "^0.5.16",
"ansi-colors": "^4.1.3",
"axios": "^1.7.7",
"bcrypt": "^5.1.1",
"canvas": "^2.11.2",
"cli-progress": "^3.12.0",
"cors": "^2.8.5",
"discord-api-types": "^0.37.103",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"form-data": "^4.0.1",
"jsonwebtoken": "^9.0.2",
"mailersend": "^2.3.0",
"mongoose": "^8.8.0",
"multer": "1.4.5-lts.1",
"mysql2": "^3.11.5",
"node-cron": "^3.0.3",
"node-fetch": "^3.3.2",
"nodemailer": "^6.9.16",
"nodemon": "^3.1.9",
"pnpm": "^9.12.3",
"sequelize": "^6.37.5",
"sequelize-cli": "^6.6.2",
"sharp": "^0.33.5",
"shuffle-seed": "^1.1.6",
"socket": "^0.14.27",
"socket.io": "^4.8.1",
"twemoji": "^14.0.2",
"uint8array-extras": "^1.4.0",
"uuid": "^11.0.3",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22.7.5",
"@types/node-cron": "^3.0.11",
"@types/nodemailer": "^6.4.17",
"@types/shuffle-seed": "^1.1.3",
"gts": "^6.0.2",
"rimraf": "^5.0.5",
"tsx": "^4.7.0",
"typescript": "^5.6.3"
}
}