forked from testcontainers/testcontainers-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.42 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.42 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
{
"name": "testcontainers-monorepo",
"type": "module",
"license": "MIT",
"workspaces": [
"packages/testcontainers",
"packages/modules/*"
],
"scripts": {
"pre-commit": "lint-staged",
"docs:serve": "docker compose up",
"test": "vitest run",
"test:ci": "npm run test -- --coverage",
"format": "prettier --write package.json \"packages/**/*.ts\" \".github/**/*.yml\"",
"lint": "eslint --fix package.json \"packages/**/*.ts\"",
"lint:ci": "eslint package.json \"${WORKSPACE_PATH}/**/*.ts\" --max-warnings=0",
"update-deps": "npm-check-updates --workspaces --root -u",
"validate-engine": "ls-engines",
"check-compiles": "npm run build --ignore-scripts --ws -- --project tsconfig.json --noEmit"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@eslint/json": "^0.14.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"ls-engines": "^0.9.3",
"npm-check-updates": "^19.3.0",
"prettier": "^3.7.4",
"prettier-plugin-organize-imports": "^4.3.0",
"shx": "^0.4.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.50.1",
"vitest": "^3.2.4"
},
"lint-staged": {
"packages/**/*.ts": [
"prettier --write",
"eslint --fix"
]
},
"engines": {
"node": ">= 20"
}
}