forked from twilio/twilio-conversations-demo-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.08 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
{
"name": "conversation-demo-app",
"version": "1.2.0",
"private": true,
"dependencies": {
"@twilio-paste/animation-library": "^2.0.0",
"@twilio-paste/avatar": "^9.1.0",
"@twilio-paste/box": "^10.3.0",
"@twilio-paste/chat-composer": "^5.1.1",
"@twilio-paste/color-contrast-utils": "^5.0.0",
"@twilio-paste/core": "20.11.0",
"@twilio-paste/customization": "^8.2.0",
"@twilio-paste/design-tokens": "^10.6.0",
"@twilio-paste/icons": "12.4.0",
"@twilio-paste/lexical-library": "^4.0.0",
"@twilio-paste/stack": "^8.0.0",
"@twilio-paste/style-props": "^9.1.1",
"@twilio-paste/styling-library": "^3.0.0",
"@twilio-paste/text": "^10.1.1",
"@twilio-paste/theme": "^11.1.0",
"@twilio-paste/types": "^6.0.0",
"@twilio-paste/uid-library": "^2.0.0",
"@twilio/conversations": "2.4.0-rc.0",
"axios": "1.6.4",
"dotenv": "10.0.0",
"file-saver": "2.0.5",
"firebase": "9.15.0",
"highcharts": "^9.3.3",
"javascript-time-ago": "^2.5.7",
"libphonenumber-js": "1.10.24",
"lodash": "4.17.21",
"prop-types": "15.7.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-dropzone": "^14.2.3",
"react-infinite-scroll-component": "6.1.0",
"react-redux": "7.2.9",
"react-router-dom": "5.2.0",
"react-scripts": "5.0.1",
"redux": "4.1.0",
"redux-thunk": "2.3.0",
"typescript": "^4.1.2",
"word-wrap": "^1.2.4",
"yjs": "13.5.22"
},
"scripts": {
"build": "react-scripts build",
"build:wdio": "cd AutomationTests; npm install",
"eject": "react-scripts eject",
"generateCircleConfig": "npx ts-node --project tsconfig.tools.json ./tools/circle-config-generator/generate-circle-config.ts",
"start": "react-scripts start",
"test": "react-scripts test",
"test:wdio": "cd AutomationTests; npm run wdio",
"lint": "npx eslint src --ext .ts --ext .tsx",
"lint:fix": "npx eslint src --ext .ts --ext .tsx --fix",
"prepare": "npx husky install"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.0.0-0",
"@babel/plugin-syntax-flow": "^7.14.5",
"@babel/plugin-transform-react-jsx": "^7.14.9",
"@circleci/circleci-config-sdk": "^0.12.0",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/file-saver": "2.0.3",
"@types/lodash": "4.14.182",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-redux": "7.1.25",
"@types/redux-thunk": "2.1.0",
"@typescript-eslint/eslint-plugin": "5.44.0",
"@typescript-eslint/parser": "5.44.0",
"conventional-changelog-conventionalcommits": "^4.6.0",
"dotenv-webpack": "^8.0.1",
"eslint": "^7.11.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"husky": "^7.0.1",
"prettier": "2.4.1",
"webpack": "5"
}
}