forked from UMC-AlbaLog/Node.JS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.91 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.91 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
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "albalog",
"version": "1.0.0",
"description": "UMC 9th Demoday Albalog BE",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "npm run prisma && npm run routes && npm run build && npm run start",
"prisma": "prisma generate",
"build": "npm run lint && tsc",
"start": "node ./dist/app.js",
"routes": "tsoa spec-and-routes",
"lint": "eslint ./src/**/*.ts",
"lint:fix": "eslint ./src/**/*.ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UMC-AlbaLog/Node.JS.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/UMC-AlbaLog/Node.JS/issues"
},
"homepage": "https://github.com/UMC-AlbaLog/Node.JS#readme",
"dependencies": {
"@prisma/adapter-mariadb": "^7.2.0",
"@prisma/client": "^7.2.0",
"axios": "^1.13.3",
"cookie-parser": "^1.4.7",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"jsonwebtoken": "^9.0.3",
"mariadb": "^3.4.5",
"mysql2": "^3.16.1",
"node-cron": "^4.2.1",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.1",
"prisma": "^7.2.0",
"swagger-ui-express": "^5.0.1",
"tsoa": "^7.0.0-alpha.0",
"typescript": "^5.9.3",
"uuid": "^13.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^25.0.3",
"@types/node-cron": "^3.0.11",
"@types/swagger-ui-express": "^4.1.8",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.51.0",
"cors": "^2.8.5",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-naming-convention": "^0.1.3",
"eslint-plugin-prettier": "^5.5.4",
"prettier": "^3.7.4",
"typescript-eslint": "^8.51.0"
}
}