-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.13 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.13 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
{
"name": "lapis-silo-e2e",
"version": "1.0.0",
"description": "Testing the LAPIS API, backed by SILO, designed for easily adding new test-cases.",
"scripts": {
"pretest": "npm run dockerUp",
"test": "npm run testRunner",
"format": "prettier --write \"./**/*.{ts,tsx,json,astro,md,mdx,mjs,cjs}\"",
"check-format": "prettier --check \"**/*.{ts,tsx,json,astro,md,mdx,mjs,cjs}\"",
"check-types": "tsc --noEmit",
"check": "npm run check-format && npm run check-types",
"dockerUp": "tsx bin/executeDocker.ts up",
"dockerDown": "tsx bin/executeDocker.ts down",
"dockerLogs": "tsx bin/executeDocker.ts logs",
"generate": "tsx bin/generate.ts",
"testRunner": "vitest --reporter=html --reporter=default"
},
"type": "module",
"devDependencies": {
"@mongodb-js/zstd": "^7.0.0",
"@types/node": "^25.3.5",
"@vitest/ui": "^4.0.18",
"duckdb": "^1.4.4",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.6"
},
"engines": {
"node": ">=22.0.0"
}
}