-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.01 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.01 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
67
68
69
70
71
{
"author": "Roberto Pintos López",
"bugs": {
"url": "https://github.com/inversify/monorepo/issues"
},
"description": "InversifyJs framework docs site package",
"dependencies": {
"@docusaurus/core": "3.9.2",
"@docusaurus/faster": "3.9.2",
"@docusaurus/plugin-content-docs": "3.9.2",
"@docusaurus/preset-classic": "3.9.2",
"@inversifyjs/http-code-examples": "workspace:*",
"@inversifyjs/graphql-code-examples": "workspace:*",
"@inversifyjs/http-open-api-code-examples": "workspace:*",
"@inversifyjs/logger-code-examples": "workspace:*",
"@inversifyjs/validation-code-examples": "workspace:*",
"@mdx-js/react": "3.1.1",
"clsx": "2.1.1",
"prism-react-renderer": "2.4.1",
"react": "19.2.4",
"react-dom": "19.2.4"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "3.9.2",
"@docusaurus/types": "3.9.2",
"@eslint/js": "10.0.1",
"@types/react": "19.2.14",
"eslint": "10.2.0",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-simple-import-sort": "12.1.1",
"prettier": "3.8.1",
"typescript": "6.0.2",
"typescript-eslint": "8.58.0"
},
"homepage": "https://inversify.io",
"keywords": [
"dependency injection",
"dependency inversion",
"di",
"inversion of control container",
"ioc",
"javascript",
"node",
"typescript"
],
"devEngines": {
"node": "^24.10.0",
"pnpm": "^10.13.1"
},
"license": "MIT",
"name": "@inversifyjs/framework-docs-site",
"private": true,
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inversify/monorepo.git"
},
"scripts": {
"clear": "docusaurus clear",
"deploy": "docusaurus deploy",
"docusaurus": "docusaurus",
"start": "docusaurus start",
"build": "pnpm run typecheck && docusaurus build",
"format": "prettier --write ./src ./*.ts",
"lint": "eslint ./src ./docusaurus.config.ts ./sidebars.ts",
"serve": "docusaurus serve",
"typecheck": "tsc"
}
}