This repository has been archived by the owner on Jun 27, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
116 lines (116 loc) · 3.55 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "human-connection-api",
"description": "Human-Connection API",
"version": "0.5.0",
"homepage": "https://human-connection.org",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Human-Connection/API.git"
},
"author": {
"name": "Human Connection gGmbH",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/Human-Connection/API/issues",
"email": "[email protected]"
},
"main": "server",
"keywords": [
"human-connection",
"social network",
"api",
"feathersjs"
],
"contributors": [],
"directories": {
"lib": "server",
"test": "test/"
},
"engines": {
"node": ">= 8.9.0",
"yarn": ">= 1.3.0"
},
"scripts": {
"ci": "yarn run eslint && yarn run test && yarn run test:coverage",
"clean": "rm -Rf tmp",
"mongo": "mongod --dbpath data --quiet",
"mongo:win": "mongod --dbpath /data/db --quiet",
"test": "nyc --reporter=text-lcov yarn run mocha && yarn run cucumber",
"test:coverage": "nyc report --reporter=text-lcov > coverage.lcov",
"eslint": "eslint server/. test/. features/. --config .eslintrc.json",
"start": "node server/",
"dev": "cross-env DEBUG=feathers* nodemon server/",
"dev:debug": "cross-env DEBUG=feathers* nodemon --inspect=0.0.0.0:9229 server/",
"mocha": "yarn run clean && cross-env NODE_ENV=test mocha --recursive --timeout 10000 --exit",
"cucumber": "concurrently --kill-others --success first 'cross-env NODE_ENV=test node server/' 'wait-on tcp:3031 && cross-env NODE_ENV=test cucumber-js'"
},
"dependencies": {
"@feathersjs/authentication": "^2.1.7",
"@feathersjs/authentication-jwt": "^2.0.1",
"@feathersjs/authentication-local": "^1.2.1",
"@feathersjs/configuration": "^1.0.2",
"@feathersjs/errors": "^3.3.0",
"@feathersjs/express": "^1.2.3",
"@feathersjs/feathers": "^3.1.7",
"@feathersjs/socketio": "^3.2.2",
"body-parser": "~1.18.3",
"cheerio": "^1.0.0-rc.2",
"compression": "~1.7.3",
"cors": "~2.8.4",
"crypto": "~1.0.1",
"crypto-js": "^3.1.9-1",
"dauria": "~2.0.0",
"email-templates": "2.6.0",
"feathers-authentication-hooks": "~0.3.1",
"feathers-authentication-management": "~2.0.1",
"feathers-blob": "~2.0.1",
"feathers-hooks-common": "~4.14.3",
"feathers-logger": "0.3.2",
"feathers-mailer": "~2.0.0",
"feathers-memory": "~2.1.3",
"feathers-mongodb": "~3.3.0",
"feathers-mongodb-fuzzy-search": "~1.1.1",
"feathers-mongoose": "~6.1.2",
"feathers-profiler": "^0.1.5",
"feathers-seeder": "~2.0.0",
"fs-blob-store": "~5.2.1",
"fs-extra": "~4.0.2",
"handlebars": "~4.0.11",
"handlebars-layouts": "~3.1.4",
"helmet": "~3.13.0",
"html-excerpt": "~0.1.0",
"mime": "^2.3.1",
"mongoose": "~4.13.2",
"multer": "~1.3.0",
"node-sass": "~4.7.2",
"nyc": "^12.0.2",
"quill-url-embeds": "^1.2.5",
"raven": "~2.6.1",
"request": "~2.88.0",
"request-promise": "~4.2.2",
"sanitize-html": "^1.18.4",
"serve-favicon": "~2.5.0",
"shortid": "~2.2.12",
"slug": "~0.9.1",
"trunc-html": "^1.1.2",
"uuid": "^3.3.2",
"valid-url": "^1.0.9",
"winston": "~3.0.0-rc5"
},
"devDependencies": {
"babel-eslint": "~8.2.6",
"chai": "^4.1.2",
"cucumber": "^4.2.1",
"concurrently": "~4.0.1",
"cross-env": "^5.2.0",
"eslint": "~4.19.1",
"istanbul": "1.1.0-alpha.1",
"mocha": "~5.2.0",
"node-fetch": "^2.2.0",
"nodemon": "~1.18.3",
"nyc": "^12.0.2",
"wait-on": "~2.1.0"
}
}