-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.22 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
{
"name": "chat42",
"version": "1.0.0",
"description": "Chat for two. Test project for work interview.",
"main": "server/index.js",
"author": "piliponful",
"license": "MIT",
"dependencies": {
"classnames": "^2.3.2",
"css-loader": "^6.8.1",
"express": "^4.19.2",
"html-webpack-plugin": "^5.5.3",
"query-string": "^8.1.0",
"react": "^18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.2.0",
"shortid": "^2.2.16",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.2",
"style-loader": "^3.3.3",
"stylus": "^0.62.0",
"stylus-loader": "^7.1.3",
"webpack": "^5.89.0"
},
"scripts": {
"build": "webpack -p --config webpack.config.prod.js",
"dev": "webpack -w --config webpack.config.dev.js",
"start": "node index"
},
"devDependencies": {
"@babel/preset-react": "^7.23.3",
"babel-core": "^6.26.3",
"babel-loader": "^9.1.3",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"eslint": "^8.54.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"webpack-cli": "^5.1.4"
}
}