forked from mlippert/rhythm-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.11 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.11 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
{
"name": "riff-server",
"description": "server for breakout, a measurement and feedback framework for human communication",
"version": "0.4.0-dev.6",
"homepage": "",
"main": "src/",
"keywords": [
"feathers"
],
"license": "MIT",
"repository": {},
"author": {},
"contributors": [],
"bugs": {},
"engines": {
"node": ">=5.4.0"
},
"scripts": {
"test": "npm run lint && npm run mocha",
"start": "node -r dotenv/config src/",
"mocha": "./node_modules/.bin/mocha --reporter spec -r dotenv/config --recursive --sort --invert --grep 'Load tests' test",
"loadtest": " -r dotenv/config ./node_modules/.bin/mocha test/load.test.js",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && istanbul-coveralls",
"lint": "./node_modules/.bin/eslint --format stylish src test"
},
"dependencies": {
"@feathersjs/authentication": "^2.1.3",
"@feathersjs/authentication-client": "^1.0.6",
"@feathersjs/authentication-jwt": "^2.0.1",
"@feathersjs/authentication-local": "^1.2.1",
"@feathersjs/configuration": "^2.0.0",
"@feathersjs/errors": "^3.3.0",
"@feathersjs/express": "^1.2.1",
"@feathersjs/feathers": "^3.1.5",
"@feathersjs/socketio": "^3.2.1",
"@feathersjs/socketio-client": "^1.1.4",
"body-parser": "^1.18.2",
"compression": "^1.7.2",
"cors": "^2.8.4",
"d3-array": "^1.2.4",
"d3-axis": "^1.0.12",
"d3-scale": "^2.1.2",
"d3-scale-chromatic": "^1.3.3",
"d3-selection": "^1.3.2",
"dotenv": "^6.1.0",
"feathers-authentication-hooks": "^0.3.1",
"feathers-hooks-common": "^4.17.10",
"feathers-mongoose": "^6.2.0",
"jsdom": "^12.2.0",
"mongoose": "^5.3.4",
"nodemailer": "^4.6.4",
"promise": "^8.0.1",
"socket.io-client": "^2.1.0",
"underscore": "^1.8.3",
"winston": "^2.4.4"
},
"devDependencies": {
"coveralls": "^2.13.3",
"eslint": "^5.7.0",
"eslint-plugin-promise": "^4.0.0",
"faker": "^4.1.0",
"istanbul": "^0.4.5",
"istanbul-coveralls": "^1.0.3",
"mocha": "^5.1.1",
"mocha-mongo": "^1.0.0",
"mongodb": "^3.1.8"
}
}