-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.79 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
{
"name": "chat-app-ui",
"version": "0.0.0",
"description": "One to many chat app UI built with react",
"main": "index.js",
"scripts": {
"start": "webpack serve --config webpack.dev.js",
"build:dev": "webpack --config webpack.dev.js --progress",
"build:prod": "webpack --config webpack.prod.js --progress",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"prepare": "husky install",
"lint-staged": "lint-staged",
"test:types": "tsc"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint",
"prettier"
],
"*.css": "stylelint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shirshendubhowmick/chat-app-ui.git"
},
"keywords": [
"react",
"chat",
"websocket",
"socket.io"
],
"author": "Shirshendu Bhowmick",
"license": "MIT",
"bugs": {
"url": "https://github.com/shirshendubhowmick/chat-app-ui/issues"
},
"homepage": "https://github.com/shirshendubhowmick/chat-app-ui#readme",
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@dr.pogodin/babel-plugin-react-css-modules": "^6.4.0",
"@types/qs": "^6.9.7",
"@types/react": "^17.0.30",
"@types/react-css-modules": "^4.6.4",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"ajv": "^8.6.3",
"autoprefixer": "^10.3.6",
"babel-loader": "^8.2.2",
"classnames": "^2.3.1",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.4.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^14.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"html-webpack-plugin": "^5.3.2",
"husky": "^7.0.2",
"lint-staged": "^11.2.3",
"postcss": "^8.3.9",
"postcss-custom-media": "^8.0.0",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-loader": "^6.2.0",
"prettier": "^2.4.1",
"style-loader": "^3.3.0",
"stylelint": "^13.13.1",
"stylelint-config-css-modules": "^2.2.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-prettier": "^1.2.0",
"terser-webpack-plugin": "^5.2.4",
"typescript": "^4.4.4",
"webpack": "^5.58.2",
"webpack-cli": "^4.9.0",
"webpack-dev-server": "^4.3.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"qs": "^6.10.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-markdown": "^7.0.1",
"socket.io-client": "^4.3.0"
}
}