-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.74 KB
/
package.json
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
{
"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.27.9",
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@commitlint/prompt-cli": "19.5.0",
"@inversifyjs/foundation-prettier-config": "workspace:*",
"@inversifyjs/foundation-eslint-config": "workspace:*",
"@inversifyjs/foundation-jest-config": "workspace:*",
"@inversifyjs/foundation-scripts": "workspace:*",
"@inversifyjs/foundation-stryker-config": "workspace:*",
"@inversifyjs/foundation-typescript-config": "workspace:*",
"@inversifyjs/foundation-webpack-config": "workspace:*",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"turbo": "2.3.0"
},
"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": {
"build": "turbo run build",
"commit": "commit",
"format": "turbo run format",
"lint": "turbo run lint",
"prepare": "husky && turbo telemetry disable",
"prerelease": "pnpm run build",
"release": "changeset publish",
"test:integration:js": "turbo test:integration:js",
"test:js": "turbo run test:js",
"test:js:coverage": "turbo run test:js:coverage",
"test:mutation": "turbo run test:mutation --concurrency=25%",
"test:uncommitted": "turbo run test:uncommitted --filter [HEAD]",
"test:unit:js": "turbo run test:unit:js",
"test": "turbo run test"
}
}