-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 3.11 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 3.11 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"author": "Remo H. Jansen",
"bugs": {
"url": "https://github.com/inversify/monorepo/issues"
},
"description": "A powerful and lightweight inversion of control container for JavaScript & Node.js apps powered by TypeScript",
"devDependencies": {
"@changesets/cli": "2.31.0",
"@commitlint/cli": "20.5.2",
"@commitlint/config-conventional": "20.5.0",
"@commitlint/prompt-cli": "20.5.2",
"@inversifyjs/foundation-changelog-generator": "workspace:*",
"@inversifyjs/foundation-eslint-config": "workspace:*",
"@inversifyjs/foundation-prettier-config": "workspace:*",
"@inversifyjs/foundation-rollup-config": "workspace:*",
"@inversifyjs/foundation-scripts": "workspace:*",
"@inversifyjs/foundation-stryker-config": "workspace:*",
"@inversifyjs/foundation-typescript-config": "workspace:*",
"@inversifyjs/foundation-vitest-config": "workspace:*",
"husky": "9.1.7",
"knip": "6.7.0",
"lint-staged": "16.4.0",
"sponsorkit": "17.1.0",
"turbo": "2.9.6"
},
"homepage": "https://inversify.io",
"keywords": [],
"license": "MIT",
"name": "root",
"packageManager": "[email protected]",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/inversify/monorepo.git"
},
"scripts": {
"benchmarks:container:cjs": "pnpm run --filter \"@inversifyjs/container-benchmarks\" benchmarks:run:cjs",
"benchmarks:container:esm": "pnpm run --filter \"@inversifyjs/container-benchmarks\" benchmarks:run:esm",
"benchmarks:http:cjs:low": "pnpm run --filter \"@inversifyjs/http-benchmarks\" benchmarks:run:cjs:low",
"benchmarks:http:cjs:medium": "pnpm run --filter \"@inversifyjs/http-benchmarks\" benchmarks:run:cjs:medium",
"benchmarks:http:cjs:high": "pnpm run --filter \"@inversifyjs/http-benchmarks\" benchmarks:run:cjs:high",
"build": "turbo run build",
"commit": "commit",
"deploy:binding-decorators:pages": "pnpm run --filter \"@inversifyjs/inversify-binding-decorators-docs-site\" deploy",
"deploy:framework:pages": "pnpm run --filter \"@inversifyjs/framework-docs-site\" deploy",
"deploy:http:open-api:pages": "pnpm run --filter \"@inversifyjs/inversify-http-open-api-docs-site\" deploy",
"deploy:inversify:pages": "pnpm run --filter \"@inversifyjs/inversify-docs-site\" deploy",
"deploy:logger:pages": "pnpm run --filter \"@inversifyjs/inversify-logger-docs-site\" deploy",
"deploy:validation:pages": "pnpm run --filter \"@inversifyjs/inversify-validation-docs-site\" deploy",
"format": "turbo run format",
"lint": "turbo run lint",
"prepare": "husky && turbo telemetry disable",
"prerelease": "pnpm run build",
"release": "changeset publish",
"test:integration": "turbo test:integration",
"test": "turbo run test",
"test:coverage": "turbo run test:coverage",
"test:mutation": "turbo run test:mutation --concurrency=25%",
"test:uncommitted": "turbo run test:uncommitted --filter [HEAD]",
"test:unit": "turbo run test:unit",
"test:e2e": "turbo run test:e2e",
"test:e2e:cjs": "turbo run test:e2e:cjs",
"test:e2e:esm": "turbo run test:e2e:esm",
"unused": "knip"
}
}