-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.55 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.55 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
{
"name": "liberteis",
"version": "2.0.0",
"description": "La aplicación oficial de gestión de eventos de Teis",
"main": "index.js",
"type": "module",
"scripts": {
"test": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js --detectOpenHandles",
"nvm": "nvm use 22",
"start": "nodemon index.js",
"format": "prettier --write .",
"dev": "concurrently \"npm run dev --prefix client\" \"npm start\"",
"prod": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlexDeveloperUwU/liberteis.git"
},
"author": "AlexDeveloperUwU",
"license": "ISC",
"bugs": {
"url": "https://github.com/AlexDeveloperUwU/liberteis/issues"
},
"homepage": "https://github.com/AlexDeveloperUwU/liberteis#readme",
"dependencies": {
"body-parser": "^2.2.0",
"cookie-parser": "^1.4.7",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"express-mysql-session": "^3.0.3",
"express-session": "^1.18.2",
"generate-password": "^1.7.1",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.2",
"kysely": "^0.28.8",
"luxon": "^3.7.2",
"multer": "^2.0.2",
"mysql2": "^3.15.3",
"pino": "^10.1.0",
"pino-http": "^11.0.0",
"pino-http-print": "^4.0.0",
"pino-pretty": "^13.0.0",
"sharp": "^0.34.5"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/swagger-jsdoc": "^6.0.4",
"concurrently": "^9.2.1",
"nodemon": "^3.1.11",
"prettier": "^3.6.2"
},
"prettier": {
"bracketSameLine": true,
"printWidth": 120
}
}