-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.41 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
{
"name": "write-gram",
"description": "",
"version": "0.0.0",
"homepage": "",
"main": "source",
"keywords": [
"feathers"
],
"author": {
"name": "DrEhsan",
"email": "[email protected]"
},
"contributors": [],
"bugs": {},
"directories": {
"lib": "source",
"test": "test/",
"config": "config/"
},
"engines": {
"node": "^8.0.0",
"npm": ">= 3.0.0"
},
"scripts": {
"test": "npm run eslint && NODE_ENV= npm run mocha",
"eslint": "eslint source/. test/. --config .eslintrc.json",
"dev": "nodemon source/",
"start": "node source/",
"mocha": "mocha test/ --recursive --exit"
},
"dependencies": {
"@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",
"express-ip": "^1.0.3",
"feathers-hooks-common": "^4.20.7",
"feathers-mongoose": "^7.3.2",
"friends-of-friends": "^3.1.1",
"helmet": "^3.18.0",
"mongodb-core": "^3.2.7",
"mongoose": "^5.7.5",
"multer": "^1.4.2",
"serve-favicon": "^2.5.0",
"sharp": "^0.23.0",
"validator": "^11.1.0",
"winston": "^3.2.1"
},
"devDependencies": {
"eslint": "^5.16.0",
"mocha": "^5.2.0",
"nodemon": "^1.19.1",
"request": "^2.88.0",
"request-promise": "^4.2.4"
}
}