-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
112 lines (112 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
{
"name": "chat-component-app-simple",
"version": "0.1.1",
"engines": {
"node": "12.18.2",
"yarn": "1.22.4"
},
"private": true,
"dependencies": {
"@babel/plugin-transform-runtime": "^7.10.1",
"@n8tb1t/use-scroll-position": "^1.0.43",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/emoji-mart": "^2.11.0",
"@types/invariant": "^2.2.31",
"@types/jest": "^24.0.0",
"@types/node": "^12.0.0",
"@types/pubnub": "^4.27.2",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@types/react-transition-group": "4.4.0",
"@types/styled-components": "^5.0.1",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@webpack-cli/serve": "^0.2.0",
"babel-plugin-styled-components": "^1.10.7",
"cli-progress": "^3.8.2",
"command-line-args": "^5.1.1",
"copy-webpack-plugin": "^6.0.1",
"css-loader": "^3.6.0",
"dompurify": "^2.0.12",
"eslint-plugin-react": "^7.20.3",
"file-loader": "^6.0.0",
"file-system": "^2.2.2",
"html-webpack-plugin": "^4.3.0",
"import-fresh": "3.2.1",
"jshint": "^2.11.1",
"mux-embed": "^3.2.0",
"postcss-css-variables": "^0.17.0",
"postcss-loader": "^3.0.0",
"pubnub": "4.27.6",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-form": "^4.0.1",
"react-scripts": "3.4.1",
"reselect": "^4.0.0",
"resolve-from": "5.0.0",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"styled-components": "^5.1.1",
"typings-for-css-modules-loader": "^1.7.0",
"url-loader": "^4.1.0",
"watch-ignore-webpack-plugin": "^1.0.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"write-file-webpack-plugin": "^4.5.1"
},
"scripts": {
"bundle": "webpack",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --mode development --open --hot",
"dev": "webpack-dev-server --mode development --open --hot",
"build": "webpack --mode production"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
"last 2 versions"
],
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"@babel/preset-typescript": "7.9.0",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.0.5",
"source-map-loader": "^0.2.4",
"ts-loader": "^7.0.5",
"typescript": "^3.9.6"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react",
"@babel/preset-typescript"
],
"plugins": [
[
"babel-plugin-styled-components",
{
"displayName": true
}
],
"@babel/proposal-class-properties",
"@babel/proposal-object-rest-spread",
[
"@babel/plugin-transform-runtime",
{
"regenerator": true
}
]
]
}
}