-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1020 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 1020 Bytes
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
{
"name": "vuejs-chat",
"version": "2.0.0",
"description": "Real-time chat application using NodeJS, VueJS & Socket.io.",
"author": "Aaron Welsh",
"main": "server.js",
"scripts": {
"start": "node index",
"dev": "nodemon index",
"build": "cd build && webpack -w"
},
"license": "MIT",
"keywords": [
"VueJS",
"NodeJS",
"Socket.io",
"Real-time chat"
],
"dependencies": {
"axios": "^0.18.0",
"express": "^4.16.4",
"moment": "^2.22.2",
"mongodb": "^3.1.9",
"socket.io": "^2.1.1",
"vue": "2.4.2",
"vue-router": "^2.7.0",
"vuex": "^2.5.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-runtime": "^6.25.0",
"css-loader": "^0.28.4",
"vue-loader": "^13.0.4",
"vue-template-compiler": "2.4.2",
"webpack": "^3.5.4"
},
"bugs": {
"url": "https://github.com/aarogrammer/vuejs-chat/issues"
}
}