forked from Human-Connection/API
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 4.22 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 4.22 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
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
117
{
"name": "human-connection-api",
"description": "Human-Connection API",
"version": "0.1.0",
"homepage": "https://human-connection.org",
"license": "CC-BY-NC-SA-4.0",
"repository": {
"type": "git",
"url": "https://github.com/Human-Connection/API.git"
},
"main": "server",
"keywords": [
"human-connection",
"social network",
"api",
"feathersjs"
],
"author": {
"name": "Human Connection gGmbH",
"email": "[email protected]"
},
"contributors": [],
"bugs": {
"url": "https://github.com/Human-Connection/API/issues",
"email": "[email protected]"
},
"directories": {
"lib": "server",
"test": "test/"
},
"engines": {
"node": ">= 8.9.0",
"yarn": ">= 1.3.0"
},
"scripts": {
"clear": "rm -Rf tmp",
"test": "npm run eslint && npm run mocha",
"eslint": "eslint server/. test/. --config .eslintrc.json",
"start": "concurrently 'mongod' 'wait-on tcp:27017 && NODE_ENV=production node server/'",
"start:win": "concurrently \"mongod\" \"wait-on tcp:27017 &&SET NODE_ENV=production&& node server/\"",
"dev:debug": "npm run clear && concurrently '$npm_package_config_mongoDev' 'wait-on tcp:27017 && NODE_ENV=development nodemon --inspect server/'",
"dev": "npm run clear && concurrently '$npm_package_config_mongoDev' 'wait-on tcp:27017 && NODE_ENV=development nodemon server/'",
"dev:local": "sh scripts/run-local.sh",
"dev:noseed": "concurrently 'mongod --dbpath data' 'wait-on tcp:27017 && NODE_ENV=development DEBUG=feathers nodemon server/'",
"dev:win": "npm run clear && concurrently \"mongod --dbpath /data/db\" \"wait-on tcp:27017&&cross-env NODE_ENV=development&&cross-env DEBUG=feathers&& nodemon --inspect server/\"",
"mocha": "npm run clear && $npm_package_config_concurrently '$npm_package_config_mongoDev &>/dev/null' 'wait-on tcp:27017 && NODE_ENV=test $npm_package_config_mocha'",
"coverage": "npm run clear && $npm_package_config_concurrently '$npm_package_config_mongoDev &>/dev/null' 'wait-on tcp:27017 && NODE_ENV=test istanbul cover $npm_package_config_mochaCoverage'"
},
"config": {
"mongoDev": "mongod --dbpath data --quiet",
"mocha": "node_modules/mocha/bin/_mocha test/ --recursive --timeout 10000 --exit",
"mochaCoverage": "node_modules/mocha/bin/_mocha -- test/ --recursive --timeout 10000 --exit",
"concurrently": "concurrently --kill-others --success first"
},
"dependencies": {
"body-parser": "~1.18.3",
"cheerio": "^1.0.0-rc.2",
"compression": "~1.7.2",
"cors": "~2.8.4",
"crypto": "~1.0.1",
"crypto-js": "^3.1.9-1",
"dauria": "~2.0.0",
"email-templates": "2.6.0",
"feathers": "~2.2.4",
"feathers-authentication": "~1.3.1",
"feathers-authentication-hooks": "~0.1.6",
"feathers-authentication-jwt": "~0.3.2",
"feathers-authentication-local": "~0.4.4",
"feathers-authentication-management": "~1.0.3",
"feathers-blob": "~1.3.1",
"feathers-configuration": "~0.4.2",
"feathers-errors": "~2.9.2",
"feathers-hooks": "~2.1.2",
"feathers-hooks-common": "~3.10.0",
"feathers-logger": "0.2.3",
"feathers-mailer": "~2.0.0",
"feathers-memory": "~1.3.1",
"feathers-mongodb": "~3.0.0",
"feathers-mongodb-fuzzy-search": "~1.1.1",
"feathers-mongoose": "~5.1.2",
"feathers-profiler": "^0.1.5",
"feathers-rest": "~1.8.1",
"feathers-seeder": "~1.0.10",
"feathers-socketio": "~2.0.1",
"fs-blob-store": "~5.2.1",
"fs-extra": "~4.0.2",
"handlebars": "~4.0.11",
"handlebars-layouts": "~3.1.4",
"helmet": "~3.12.0",
"html-excerpt": "~0.1.0",
"mime": "^2.3.1",
"mongoose": "~4.13.2",
"multer": "~1.3.0",
"node-sass": "~4.7.2",
"quill-url-embeds": "^1.2.5",
"raven": "~2.6.1",
"request": "~2.86.0",
"request-promise": "~4.2.2",
"sanitize-html": "^1.18.2",
"serve-favicon": "~2.5.0",
"shortid": "~2.2.8",
"slug": "~0.9.1",
"trunc-html": "^1.1.2",
"valid-url": "^1.0.9",
"winston": "~3.0.0-rc5"
},
"devDependencies": {
"babel-eslint": "~8.2.3",
"concurrently": "~3.5.1",
"cross-env": "^5.1.5",
"eslint": "~4.19.1",
"istanbul": "1.1.0-alpha.1",
"mocha": "~5.2.0",
"nodemon": "~1.17.4",
"wait-on": "~2.1.0"
}
}