-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
95 lines (95 loc) · 2.78 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
{
"name": "terp-docs",
"version": "1.0.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 . --ext .js --ext .jsx",
"lint:fix": "npm run lint -- --fix",
"prepare": "is-ci || husky install",
"test": "jest --passWithNoTests"
},
"dependencies": {
"@docusaurus/core": "^2.2.0",
"@docusaurus/preset-classic": "^2.2.0",
"@docusaurus/remark-plugin-npm2yarn": "^2.2.0",
"@docusaurus/theme-live-codeblock": "^2.2.0",
"@dytesdk/react-ui-kit": "^1.21.0",
"@dytesdk/react-web-core": "file:./modules/dytesdk-react-web-core-1.5.1-stripped.1.tgz",
"@dytesdk/ui-kit": "^1.21.0",
"@dytesdk/web-core": "file:./modules/dytesdk-web-core-0.28.2-stripped.5.tgz",
"@fontsource/inter": "^5.0.16",
"@fontsource/jetbrains-mono": "^5.0.18",
"@mdx-js/react": "^1.6.22",
"@radix-ui/react-icons": "^1.1.1",
"@radix-ui/react-select": "^0.1.1",
"@stoplight/elements": "^7.6.0",
"clsx": "^1.1.1",
"param-case": "^3.0.4",
"prism-react-renderer": "^1.3.3",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@docusaurus/module-type-aliases": "^2.2.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^9.0.0",
"@semantic-release/release-notes-generator": "^10.0.3",
"buffer": "^6.0.3",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"docusaurus-plugin-typedoc": "^0.17.5",
"eslint": "^8.19.0",
"eslint-plugin-react": "^7.30.1",
"husky": "^7.0.0",
"is-ci": "^3.0.1",
"jest": "^27.5.1",
"pascal-case": "^3.1.2",
"path-browserify": "^1.0.1",
"prettier": "^2.7.1",
"process": "^0.11.10",
"semantic-release": "^19.0.2",
"stream-browserify": "^3.0.0",
"typedoc": "^0.23.7",
"typedoc-plugin-markdown": "^3.13.3",
"url": "^0.11.0"
},
"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"
]
}
}