-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.44 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.44 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
{
"name": "sql-back",
"version": "1.0.0",
"author": "itenium",
"license": "MIT",
"main": "index.ts",
"private": true,
"scripts": {
"dev": "tsx watch --clear-screen=false src/index.ts | pino-pretty",
"build": "tsup",
"start": "node dist/index.js",
"clean": "rimraf dist coverage",
"lint": "biome check src/",
"lint:fix": "biome check src/ --fix",
"format": "biome format src/",
"test": "vitest run --passWithNoTests"
},
"dependencies": {
"@asteasolutions/zod-to-openapi": "^7.0.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"envalid": "^8.0.0",
"express": "^4.19.2",
"helmet": "^7.1.0",
"http-status-codes": "^2.3.0",
"mssql": "^11.0.1",
"pg": "^8.13.0",
"pino-http": "^10.0.0",
"swagger-ui-express": "^5.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@biomejs/biome": "1.9.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/mssql": "^9.1.5",
"@types/pg": "^8.11.10",
"@types/supertest": "^6.0.2",
"@types/swagger-ui-express": "^4.1.6",
"pino-pretty": "^11.0.0",
"rimraf": "^6.0.0",
"supertest": "^7.0.0",
"tsup": "^8.0.2",
"tsx": "^4.7.2",
"typescript": "^5.4.4",
"vite-tsconfig-paths": "^5.0.0",
"vitest": "^2.0.0"
},
"tsup": {
"entry": [
"src",
"!src/**/__tests__/**",
"!src/**/*.test.*"
],
"splitting": false,
"sourcemap": true,
"clean": true
}
}