forked from Hush-23/Hush
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.76 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
{
"name": "hush",
"version": "2.0.0",
"description": "p2p chat app",
"main": "index.js",
"scripts": {
"start": "nodemon server/server.js",
"build": "NODE_ENV=production webpack",
"dev": "NODE_ENV=development nodemon server/server.js & webpack-dev-server --open --hot",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hush-23/Hush.git"
},
"author": "Hush",
"license": "ISC",
"bugs": {
"url": "https://github.com/Hush-23/Hush/issues"
},
"homepage": "https://github.com/Hush-23/Hush#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"crypto-js": "^4.0.0",
"express": "^4.17.1",
"mongoose": "^5.11.12",
"pg": "^8.5.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"socket.io": "^3.1.0",
"socket.io-client": "^3.1.0",
"styled-components": "^5.2.1"
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-export-default-from": "^7.12.1",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^5.0.5",
"css-loader": "^5.0.1",
"eslint": "^7.12.1",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react": "^7.21.5",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"nodemon": "^2.0.7",
"redux-devtools-extension": "^2.13.8",
"style-loader": "^2.0.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.9.0"
}
}