-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.35 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.35 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
{
"name": "root",
"bugs": {
"url": "https://github.com/inversify/framework-examples/issues"
},
"description": "InversifyJS framework examples root package",
"devDependencies": {
"@commitlint/cli": "20.4.2",
"@commitlint/config-conventional": "20.4.2",
"@commitlint/prompt-cli": "20.4.2",
"@inversifyjs/foundation-eslint-config": "~0.1.3",
"@inversifyjs/foundation-prettier-config": "~0.1.1",
"@inversifyjs/foundation-typescript-config": "~0.1.1",
"@inversifyjs/foundation-vitest-config": "~0.1.1",
"husky": "9.1.7",
"knip": "5.85.0",
"lint-staged": "16.3.0",
"turbo": "2.8.12"
},
"keywords": [
"inversify",
"framework",
"examples"
],
"author": "Roberto Pintos López",
"license": "MIT",
"packageManager": "pnpm@10.30.3",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/inversify/framework-examples.git"
},
"scripts": {
"build": "turbo run build",
"commit": "commit",
"format": "turbo run format",
"lint": "turbo run lint",
"prepare": "husky && turbo telemetry disable",
"test:integration": "turbo test:integration",
"test": "turbo run test",
"test:coverage": "turbo run test:coverage",
"test:uncommitted": "turbo run test:uncommitted --filter [HEAD]",
"test:unit": "turbo run test:unit",
"unused": "knip"
}
}