-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.4 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.4 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
{
"name": "sql_assessment",
"version": "1.0.0",
"license": "MIT",
"type": "module",
"main": "build/server.js",
"scripts": {
"build": "rm tsconfig.tsbuildinfo 2> /dev/null || true && rm -rf dist 2> /dev/null || true && node esbuild.config.js && npm run build:types && npx tsc-alias",
"build:types": "tsc --emitDeclarationOnly --declaration --declarationDir dist",
"check": "biome check .",
"fix": "biome check --fix .",
"format": "biome format --write .",
"lint": "biome lint .",
"test": "vitest run --silent",
"test:coverage": "vitest run --coverage --silent"
},
"dependencies": {
"dotenv": "^16.4.5",
"postgres": "^3.4.7",
"winston": "^3.17.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.7",
"@commitlint/config-conventional": "^20.0.0",
"@tsconfig/node20": "^20.1.4",
"@types/express": "^5.0.3",
"@types/node": "^22.10.5",
"@types/pg": "^8.15.6",
"@vitest/coverage-v8": "^4.0.13",
"commitlint": "^20.1.0",
"pg": "^8.16.3",
"pg-mem": "^3.0.5",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^4.0.14"
},
"engines": {
"node": ">=22.0.0"
},
"volta": {
"node": "22.13.1",
"pnpm": "10.0.0"
},
"recipe": {
"name": "tiramisu",
"version": "1.0.0"
}
}