forked from chatscope/chat-ui-kit-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
144 lines (144 loc) · 3.79 KB
/
package.json
File metadata and controls
144 lines (144 loc) · 3.79 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
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "@openclassrooms/chat-ui-kit-react",
"version": "1.0.0",
"description": "Fork of @chatscope/chat-ui-kit-react",
"license": "MIT",
"keywords": [
"chat",
"react",
"reactjs",
"ui",
"user interface",
"components",
"ui kit",
"communication",
"conversation",
"toolkit",
"library",
"frontend",
"reusable",
"feed",
"comments",
"social",
"talk"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:OpenClassrooms/ai-api.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"types": "src/types/index.d.ts",
"peerDependencies": {
"prop-types": "^15.7.2",
"react": "^16.12.0 || ^17.0.0 || ^18.2.0",
"react-dom": "^16.12.0 || ^17.0.0 || ^18.2.0"
},
"devDependencies": {
"@babel/cli": "7.10.5",
"@babel/core": "7.11.4",
"@babel/plugin-proposal-class-properties": "7.10.4",
"@babel/preset-env": "7.11.5",
"@babel/preset-react": "7.10.4",
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@rollup/plugin-babel": "5.2.0",
"@rollup/plugin-commonjs": "11.1.0",
"@rollup/plugin-node-resolve": "7.1.3",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "9.2.6",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"babel-eslint": "10.1.0",
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
"chokidar-cli": "2.1.0",
"eslint": "8.6.0",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "4.3.0",
"lint-staged": "10.4.0",
"prettier": "2.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "2.26.5",
"rollup-plugin-peer-deps-external": "2.2.3",
"rollup-plugin-terser": "5.3.0",
"semantic-release": "23.0.2",
"typescript": "^4.5.4"
},
"scripts": {
"build:clean": "rm -Rf dist",
"build:umd": "rollup -c",
"build:cjs": "BABEL_ENV=cjs babel src/components -d dist/cjs",
"build:esm": "BABEL_ENV=esm babel src/components -d dist/es",
"build": "yarn run build:clean && yarn run build:esm && yarn run build:cjs && yarn run build:umd",
"pack": "yarn pack",
"watch": "chokidar 'src/**/*.*' -c 'yarn run build:esm'"
},
"dependencies": {
"@chatscope/chat-ui-kit-styles": "^1.2.0",
"@mui/icons-material": "^6.4.4",
"classnames": "^2.2.6",
"prop-types": "^15.7.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,md,jsx}": "prettier --write"
},
"files": [
"dist",
"src/**/*.d.ts"
],
"release": {
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "angular",
"releaseRules": [
{
"type": "docs",
"scope": "readme",
"release": "patch"
},
{
"scope": "no-release",
"release": false
}
]
}
],
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md",
"changelogTitle": "# @chatscope/chat-ui-kit-react changelog"
}
],
"@semantic-release/github",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"package.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
},
"packageManager": "yarn@3.2.0"
}