This repository has been archived by the owner on Apr 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 3.27 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
{
"name": "webchat",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "cross-env MODE=development CONFIG=as-development webpack serve",
"build": "cross-env webpack",
"build:dev": "cross-env MODE=development CONFIG=as-development webpack",
"lint": "eslint --ext js --ext jsx --ext ts --ext tsx src/",
"lint:fix": "npm run lint -- --fix",
"test": "jest",
"license:add": "docker run --rm -v ${PWD}:/src ghcr.io/google/addlicense -c \"Technology Matters\" -y \"2021-2023\" -ignore \"**/node_modules/**\" -ignore \"**/dist/**\" -ignore \"**/coverage/**\" -f license-header.tpl .",
"license:check": "docker run --rm -v ${PWD}:/src ghcr.io/google/addlicense -check -c \"Technology Matters\" -y \"2021-2023\" -ignore \"**/node_modules/**\" -ignore \"**/dist/**\" -ignore \"**/coverage/**\" -f license-header.tpl .",
"license:add:windows": "docker run --rm -v %cd%:/src ghcr.io/google/addlicense -c \"Technology Matters\" -y \"2021-2023\" -ignore \".idea/**\" -ignore \"**/node_modules/**\" -ignore \"**/dist/**\" -ignore \"**/coverage/**\" -f license-header.tpl .",
"license:check:windows": "docker run --rm -v %cd%:/src ghcr.io/google/addlicense -check -c \"Technology Matters\" -y \"2021-2023\" -ignore \".idea/**\" -ignore \"**/node_modules/**\" -ignore \"**/dist/**\" -ignore \"**/coverage/**\" **/build-f license-header.tpl .",
"license:add:windows:local": "addlicense -c \"Technology Matters\" -y \"2021-2023\" -ignore .idea\\\\** -ignore node_modules\\\\** -ignore \"**\\\\node_modules\\\\**\" -ignore \"**\\\\dist\\\\**\" -ignore \"**\\\\coverage\\\\**\" -f license-header.tpl .",
"license:check:windows:local": "addlicense -check -c \"Technology Matters\" -y \"2021-2023\" -ignore .idea\\\\** -ignore node_modules\\\\** -ignore \"**\\\\node_modules\\\\**\" -ignore \"**\\\\dist\\\\**\" -ignore \"**\\\\coverage\\\\**\" -f license-header.tpl ."
},
"devDependencies": {
"@babel/core": "^7.19.0",
"@babel/preset-env": "^7.19.0",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@emoji-mart/react": "^1.1.1",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.10",
"@types/dompurify": "^3.0.1",
"@types/jest": "^29.2.6",
"@types/pubsub-js": "^1.8.3",
"@types/react-google-recaptcha": "^2.1.5",
"@types/react-html-parser": "^2.0.2",
"@types/react-redux": "^7.1.24",
"@typescript-eslint/parser": "^5.37.0",
"babel-loader": "^8.2.5",
"babel-runtime": "^6.26.0",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"emoji-mart": "^5.5.2",
"eslint": "^8.23.1",
"eslint-config-twilio-react": "^2.0.0",
"html-webpack-plugin": "^5.0.0",
"jest": "^29.3.1",
"process": "^0.11.10",
"raw-loader": "^4.0.2",
"react-google-recaptcha": "^2.1.0",
"ts-jest": "^29.0.5",
"ts-loader": "^8.0.16",
"typescript": "^4.1.3",
"webpack": "^5.76.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2",
"webpack-utf8-bom": "^1.3.0"
},
"dependencies": {
"@twilio/flex-webchat-ui": "^2.9.1",
"buffer": "^6.0.3",
"date-fns": "^2.29.3",
"dompurify": "^3.0.1",
"pubsub-js": "^1.9.4",
"react-hook-form": "^7.43.7",
"react-html-parser": "^2.0.2",
"redux": "^4.2.0"
},
"prettier": {
"endOfLine": "auto"
}
}