-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.45 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.45 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
{
"name": "obelisco-api",
"version": "1.0.0",
"description": "",
"main": "/src/server.ts",
"devDependencies": {
"@types/cors": "^2.8.18",
"@types/express": "^5.0.1",
"@types/module-alias": "^2.0.4",
"@types/node": "^22.15.3",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"nodemon": "^3.1.10",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"scripts": {
"start": "node dist/server.js",
"dev": "nodemon",
"build": "tsc",
"seed": "ts-node -r tsconfig-paths/register ./src/utils/seed.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gcba/Obelisco-api.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/gcba/Obelisco-api/issues"
},
"homepage": "https://github.com/gcba/Obelisco-api#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"mariadb": "^3.4.2",
"module-alias": "^2.2.3",
"mysql2": "^3.14.1",
"pg": "^8.16.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.37.7",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"tsconfig-paths": "^4.2.0"
},
"_moduleAliases": {
"@models": "dist/models",
"@utils": "dist/utils",
"@routes": "dist/routes",
"@controllers": "dist/controllers",
"@config": "dist/config",
"@middlewares": "dist/middlewares",
"@services": "dist/services"
}
}