This repository was archived by the owner on Sep 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 loc) · 3.13 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
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@distributeaid/chat-ui",
"version": "0.0.0-development",
"description": "Chat UI for the in-app chat",
"scripts": {
"build": "npx webpack --config-name production",
"start": "webpack-dev-server --config-name development --open",
"lint": "eslint --ext .js,.ts,.tsx src/**",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect",
"postinstall": "check-node-version --package"
},
"keywords": [
"Distribute Aid",
"Chat"
],
"author": "Distribute Aid | https://distributeaid.org/",
"license": "AGPL-3.0-only",
"repository": {
"type": "git",
"url": "git+https://github.com/distributeaid/chat-ui.git"
},
"bugs": {
"url": "https://github.com/distributeaid/chat-ui/issues"
},
"homepage": "https://github.com/distributeaid/chat-ui#readme",
"devDependencies": {
"@bifravst/code-style": "8.0.62",
"@commitlint/cli": "9.1.2",
"@commitlint/config-angular": "9.1.2",
"@semantic-release/commit-analyzer": "8.0.1",
"@svgr/webpack": "5.4.0",
"@types/react": "16.9.49",
"@types/react-dom": "16.9.8",
"@types/showdown": "1.9.3",
"@types/styled-components": "5.1.3",
"@types/twemoji": "12.1.1",
"@types/uuid": "8.3.0",
"check-node-version": "4.0.3",
"eslint-plugin-react": "7.20.6",
"handlebars": "4.7.6",
"husky": "4.3.0",
"semantic-release": "17.1.1",
"source-map-loader": "1.1.0",
"stream-buffers": "3.0.2",
"ts-loader": "8.0.3",
"twilio-chat": "4.0.0",
"typescript": "4.0.2",
"webpack": "4.44.1",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.11.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --ext .js,.ts"
],
"*.{md,json,yaml,yml,js}": [
"prettier --write"
]
},
"dependencies": {
"@apollo/client": "3.1.4",
"feather-icons": "4.28.0",
"fp-ts": "2.8.2",
"graphql": "15.3.0",
"graphql-tag": "2.11.0",
"react": "16.13.1",
"react-apollo": "3.1.5",
"react-dom": "16.13.1",
"react-feather": "2.0.8",
"showdown": "1.9.1",
"snyk": "1.389.0",
"styled-components": "5.2.0",
"uuid": "8.3.0"
},
"release": {
"branches": [
"saga"
],
"remoteTags": true,
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/github",
{
"assets": [
{
"path": "/home/runner/work/chat-ui/chat-ui/dist/main.js",
"name": "distribute-aid-chat-ui.${nextRelease.gitTag}.js",
"label": "Chat UI Bundle"
},
{
"path": "/home/runner/work/chat-ui/chat-ui/dist/chatbutton.js",
"name": "distribute-aid-chat-button.${nextRelease.gitTag}.js",
"label": "Chat Button"
}
]
}
]
]
},
"files": [
"README.md",
"dist",
"web",
"package-lock.json"
],
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
},
"snyk": true
}