-
-
Notifications
You must be signed in to change notification settings - Fork 260
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·48 lines (48 loc) · 1.31 KB
/
package.json
File metadata and controls
executable file
·48 lines (48 loc) · 1.31 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
{
"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\"",
"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"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@eslint/json": "^0.11.0",
"@vitest/coverage-v8": "^3.1.1",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.3",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"ls-engines": "^0.9.2",
"npm-check-updates": "^16.14.20",
"prettier": "^3.5.3",
"prettier-plugin-organize-imports": "^4.1.0",
"shx": "^0.3.4",
"ts-node": "^10.9.2",
"typescript": "^4.9.5",
"typescript-eslint": "^8.26.1",
"vitest": "^3.1.1"
},
"lint-staged": {
"packages/**/*.ts": [
"prettier --write",
"eslint --fix"
]
},
"engines": {
"node": ">= 10.16"
}
}