-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.5 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
{
"name": "chat",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "main.ts",
"scripts": {
"dev": "babel-watch --only *.ts --extensions .ts --watch src --before-restart \"npm run build:main\" --inspect -- dist/main.js",
"start": "node dist/main.js",
"build:main": "babel -x .ts -d dist src",
"build:types": "tsc",
"models-from-database": "npx @rmp135/sql-ts -c database-type-generation/sql-to-ts.json",
"parse-reactions": "cd emoji-generation && bun generateJson.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-session": "^1.18.0",
"jimp": "^0.22.12",
"mariadb": "^3.3.0",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"ws": "^8.17.0"
},
"devDependencies": {
"@babel/cli": "^7.24.5",
"@babel/preset-env": "^7.24.5",
"@babel/preset-typescript": "^7.24.1",
"@rmp135/sql-ts": "^2.1.0",
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.0",
"@types/passport": "^1.0.16",
"@types/passport-local": "^1.0.38",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"@types/ws": "^8.5.10",
"babel-plugin-add-import-extension": "^1.6.0",
"babel-watch": "^7.8.1",
"mysql2": "^3.9.7",
"typescript": "^5.4.5"
}
}