-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·72 lines (72 loc) · 2.02 KB
/
package.json
File metadata and controls
executable file
·72 lines (72 loc) · 2.02 KB
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
{
"name": "chat",
"version": "1.0.0",
"description": "Chat application in TypeScript",
"main": "index.js",
"scripts": {
"start": "nodemon --watch src/server --exec ts-node src/server/index.ts",
"start:prod": "SET NODE_ENV=production & nodemon --watch src/server --exec ts-node src/server/index.ts",
"test": "mocha -r ts-node/register src/**/*.spec.ts"
},
"keywords": [
"chat",
"express",
"react",
"socket.io",
"typescript"
],
"author": "Mariusz Baran",
"license": "MIT",
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/classnames": "^2.2.6",
"@types/express": "^4.16.0",
"@types/helmet": "0.0.42",
"@types/jsonwebtoken": "^8.3.0",
"@types/lodash": "^4.14.116",
"@types/mocha": "^5.2.5",
"@types/mongoose": "^5.2.4",
"@types/react": "^16.4.7",
"@types/react-dom": "^16.0.6",
"@types/react-redux": "^6.0.6",
"@types/react-router-dom": "^4.3.0",
"@types/socket.io": "^2.1.0",
"classnames": "^2.2.6",
"css-loader": "^1.0.0",
"mini-css-extract-plugin": "^0.4.1",
"mocha": "^5.2.0",
"node-sass": "^4.9.3",
"nodemon": "^1.18.3",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"ts-loader": "^5.3.0",
"ts-node": "^7.0.0",
"typescript": "^3.0.1",
"webpack": "^4.16.4",
"webpack-dev-middleware": "^3.1.3",
"webpack-merge": "^4.1.4"
},
"dependencies": {
"@types/socket.io-client": "^1.4.32",
"axios": "^0.18.0",
"bcrypt": "^3.0.0",
"body-parser": "^1.18.3",
"express": "^4.16.3",
"helmet": "^3.13.0",
"jsonwebtoken": "^8.3.0",
"lodash": "^4.17.10",
"mongoose": "^5.2.7",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
"socket.io": "^2.1.1",
"socket.io-client": "^2.1.1"
},
"repository": {
"type": "git",
"url": "https://github.com/mariusz-ba/chat.git"
}
}