-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
109 lines (109 loc) · 3.11 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "sentinel-docs",
"version": "1.0",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
"start": "docusaurus start",
"build": "docusaurus build",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy",
"clear": "docusaurus clear",
"serve": "docusaurus serve",
"write-translations": "docusaurus write-translations",
"write-heading-ids": "docusaurus write-heading-ids",
"lint": "eslint . -c eslint.config.js --fix",
"lint:fix": "npm run lint -- --fix",
"prepare": "is-ci || husky install",
"test": "jest --passWithNoTests"
},
"dependencies": {
"@docusaurus/core": "^3.7.0",
"@docusaurus/preset-classic": "^3.7.0",
"@docusaurus/remark-plugin-npm2yarn": "^3.7.0",
"@docusaurus/theme-classic": "^3.7.0",
"@docusaurus/theme-live-codeblock": "^3.7.0",
"@dytesdk/react-ui-kit": "^2.1.2",
"@dytesdk/react-web-core": "^2.2.0",
"@dytesdk/ui-kit": "^2.1.2",
"@dytesdk/web-core": "^2.2.0",
"@mdx-js/mdx": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-select": "^2.1.4",
"@stoplight/elements": "^8.0.2",
"@stoplight/mosaic": "^1.53.4",
"@types/node": "^22.10.5",
"@types/react": "^19.0.2",
"camel-case": "^4.1.2",
"change-case": "^5.4.4",
"clsx": "^2.1.1",
"html-minifier-terser": "^7.2.0",
"html-webpack-plugin": "^5.6.3",
"prism-react-renderer": "^2.4.1",
"punycode": "^2.3.1",
"querystring-es3": "^0.2.1",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"react-loadable": "^5.5.0",
"react-router-dom": "^5.3.4",
"remark-parse": "^11.0.0",
"typescript": "^5.7.2"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@docusaurus/module-type-aliases": "^3.7.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.3",
"buffer": "^6.0.3",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"docusaurus-plugin-typedoc": "^1.2.0",
"eslint": "^9.17.0",
"eslint-plugin-react": "^7.37.3",
"husky": "^9.1.7",
"is-ci": "^4.1.0",
"jest": "^29.7.0",
"pascal-case": "^4.0.0",
"path-browserify": "^1.0.1",
"prettier": "^3.4.2",
"process": "^0.11.10",
"semantic-release": "^24.2.1",
"stream-browserify": "^3.0.0",
"tailwindcss": "^3.4.17",
"typedoc": "^0.27.6",
"typedoc-plugin-markdown": "^4.4.1",
"url": "^0.11.4",
"url-loader": "^4.1.1"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"prettier": {
"singleQuote": true,
"tabWidth": 2
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}