-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3.36 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
{
"name": "services",
"version": "0.0.1",
"description": "backend services for the mystery chat",
"main": "index.js",
"scripts": {
"test": "cross-env NODE_ENV=test mocha --timeout 10000 --require @babel/register tests/*.js --exit && jest --detectOpenHandles",
"test-backend": "mocha --timeout 10000 --require @babel/register tests/*.js --exit",
"test-frontend": "jest --detectOpenHandles",
"travis": "echo \"travis build push!\" && exit 0",
"start": "node server.js",
"pre": "npm install && cd application && npm install && npm run build",
"dev": "webpack-dev-server --mode development --open --port 3000",
"build": "webpack --mode production --history-api-fallback"
},
"author": "KDC",
"license": "Mozilla Public License 2.0",
"dependencies": {
"@babel/cli": "^7.13.0",
"@babel/core": "^7.13.8",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.13.9",
"@babel/preset-react": "^7.12.13",
"@babel/register": "^7.13.8",
"@babel/runtime": "^7.13.9",
"@types/react": "^16.14.4",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"babel-preset-env": "^1.7.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"chai": "^4.3.3",
"chai-http": "^4.3.0",
"cookie-parser": "^1.4.5",
"core-js": "^3.9.1",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"crypto-random-string": "^3.3.1",
"cryptr": "^6.0.2",
"css-loader": "^3.6.0",
"dotenv": "^8.2.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"express": "^4.17.1",
"express-validator": "^6.10.0",
"grommet": "^2.16.3",
"helmet": "^4.4.1",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^4.5.2",
"http": "0.0.1-security",
"https": "^1.0.0",
"is-url": "^1.2.4",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"jest-css-modules-transform": "^4.2.0",
"jest-fetch-mock": "^3.0.3",
"jsonwebtoken": "^8.5.1",
"mocha": "^8.3.0",
"mongodb": "^3.6.4",
"mongodb-memory-server": "^6.9.3",
"mongoose": "^5.11.18",
"morgan": "^1.10.0",
"nodemailer": "^6.5.0",
"path": "^0.12.7",
"polished": "^3.7.1",
"react": "^16.14.0",
"react-avatar": "^3.10.0",
"react-content-loader": "^6.0.2",
"react-custom-scrollbars": "^4.2.1",
"react-dnd": "^7.6.2",
"react-dnd-html5-backend": "^7.6.2",
"react-dom": "^16.14.0",
"react-hot-loader": "^4.13.0",
"react-icons": "^3.11.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.3",
"react-tag-input": "^6.5.2",
"react-toast": "^1.0.1",
"react-tooltip": "^4.2.15",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"shortid": "^2.2.16",
"socket.io": "^2.4.1",
"socket.io-client": "^2.4.0",
"style-loader": "^1.3.0",
"styled-components": "^5.2.1",
"typescript": "^3.9.9",
"uniqid": "^5.3.0",
"webpack": "^5.24.3",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2"
},
"resolutions": {
"@babel/runtime": "^7.12.5"
},
"proxy": "http://localhost:8080"
}