-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.65 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.65 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
{
"name": "team-chat",
"description": "A cross platform team chat application",
"version": "0.0.0",
"homepage": "",
"main": "src",
"keywords": [
"feathers"
],
"author": {
"name": "Erwins Saget",
"email": "[email protected]"
},
"contributors": [],
"bugs": {},
"directories": {
"lib": "src",
"test": "test/",
"config": "config/"
},
"engines": {
"node": "^10.0.0",
"npm": ">= 3.0.0"
},
"scripts": {
"test": "NODE_ENV= npm run mocha",
"dev": "nodemon src/",
"start": "node src/",
"mocha": "npm run clean && NODE_ENV=test mocha test/ --recursive --exit",
"clean": "shx rm -rf test/data/",
"install": "cd client && npm install"
},
"dependencies": {
"@feathersjs/authentication": "^2.1.16",
"@feathersjs/authentication-jwt": "^2.0.10",
"@feathersjs/authentication-local": "^1.2.9",
"@feathersjs/configuration": "^2.0.6",
"@feathersjs/errors": "^3.3.6",
"@feathersjs/express": "^1.3.1",
"@feathersjs/feathers": "^3.3.1",
"@feathersjs/socketio": "^3.2.9",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^7.0.0",
"feathers-authentication-hooks": "^0.3.1",
"feathers-mongoose": "^7.3.2",
"helmet": "^3.16.0",
"mdbreact": "^4.11.1",
"mongodb-core": "^3.1.11",
"mongoose": "^5.4.19",
"node-sass": "^4.11.0",
"serve-favicon": "^2.5.0",
"twilio": "^3.29.2",
"winston": "^3.2.1"
},
"devDependencies": {
"bootstrap": "^4.3.1",
"chai": "^4.2.0",
"feathers-memory": "^3.0.2",
"mocha": "^5.2.0",
"nodemon": "^1.18.10",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"shx": "^0.3.2"
}
}