-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 894 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 894 Bytes
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
{
"name": "api-node-sql",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node dist/server.js",
"dev": "tsx --env-file=.env --watch src/server.ts",
"build": "swc src -d dist --strip-leading-paths"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"joi": "^18.0.1",
"mysql2": "^2.3.3",
"pino": "^10.1.0",
"pino-http": "^11.0.0",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"@swc/cli": "^0.7.9",
"@swc/core": "^1.15.1",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.16",
"@types/node": "^22.19.1",
"@types/swagger-ui-express": "^4.1.8",
"openapi-types": "^12.1.3",
"pino-pretty": "^13.1.2",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
},
"type": "module"
}