-
-
Notifications
You must be signed in to change notification settings - Fork 261
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.17 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
{
"name": "testcontainers-monorepo",
"type": "module",
"license": "MIT",
"workspaces": [
"packages/testcontainers",
"packages/modules/*"
],
"scripts": {
"docs:serve": "docker compose up",
"test": "vitest run",
"test:ci": "npm run test -- --coverage",
"format": "prettier --write package.json \"packages/**/*.ts\" \".github/**/*.yml\" \".github/**/*.mjs\"",
"lint": "eslint --fix package.json \"packages/**/*.ts\" \".github/**/*.mjs\"",
"lint:ci": "eslint package.json \"${WORKSPACE_PATH}/**/*.ts\" --max-warnings=0",
"update-deps": "npm-check-updates --workspaces --root -u",
"check-compiles": "tsc -b packages/testcontainers packages/modules/*"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@eslint/json": "^2.0.0",
"@vitest/coverage-v8": "^4.1.8",
"eslint": "^10.4.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"npm-check-updates": "^22.2.3",
"prettier": "^3.8.4",
"prettier-plugin-organize-imports": "^4.3.0",
"shx": "^0.4.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.61.0",
"vitest": "^4.0.18"
},
"engines": {
"node": ">= 22.22"
}
}