-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.19 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
{
"name": "vue-feathers-chat",
"description": "A sample realtime chat made with Vue and Feathers",
"version": "1.0.0",
"main": "src/",
"keywords": [
"chat", "vue", "feathers", "socket.io", "nedb"
],
"license": "MIT",
"author": "Erick Eduardo Petrucelli <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/ErickPetru/vue-feathers-chat.git"
},
"engines": {
"node": ">= 6.0.0"
},
"scripts": {
"start": "node src/",
"test": "npm run jshint && npm run mocha",
"jshint": "jshint src/. test/. --config",
"mocha": "mocha test/ --recursive"
},
"dependencies": {
"body-parser": "^1.17.1",
"compression": "^1.6.2",
"cors": "^2.8.1",
"feathers": "^2.1.1",
"feathers-authentication": "^0.7.12",
"feathers-configuration": "^0.3.3",
"feathers-errors": "^2.6.2",
"feathers-hooks": "^1.8.1",
"feathers-nedb": "^2.6.1",
"feathers-rest": "^1.7.1",
"feathers-socketio": "^1.5.2",
"nedb": "^1.8.0",
"passport": "^0.3.2",
"serve-favicon": "^2.4.1",
"winston": "^2.3.1"
},
"devDependencies": {
"jshint": "^2.9.4",
"mocha": "^3.2.0",
"request": "^2.81.0"
}
}