forked from HumanDynamics/rhythm-server
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.1 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.1 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": "rhythm-server",
"description": "server for breakout, a measurement and feedback framework for human communication",
"version": "0.4.0-dev.2",
"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.2",
"@feathersjs/authentication-jwt": "^2.0.1",
"@feathersjs/authentication-local": "^1.2.1",
"@feathersjs/client": "^3.4.5",
"@feathersjs/configuration": "^1.0.2",
"@feathersjs/errors": "^3.3.0",
"@feathersjs/express": "^1.2.1",
"@feathersjs/feathers": "^3.1.5",
"@feathersjs/socketio": "^3.2.1",
"body-parser": "^1.18.2",
"compression": "^1.7.2",
"cors": "^2.8.4",
"d3-array": "^1.2.1",
"d3-axis": "^1.0.8",
"d3-scale": "^2.0.0",
"d3-scale-chromatic": "^1.3.0",
"d3-selection": "^1.3.0",
"dotenv": "^5.0.1",
"feathers-authentication-hooks": "^0.2.0",
"feathers-hooks-common": "^4.11.1",
"feathers-mongoose": "^6.1.0",
"jsdom": "^11.10.0",
"mongoose": "^5.1.0",
"nodemailer": "^4.6.4",
"promise": "^8.0.1",
"socket.io-client": "^2.1.0",
"underscore": "^1.8.3",
"winston": "^2.4.1"
},
"devDependencies": {
"coveralls": "^2.13.3",
"eslint": "^4.19.1",
"eslint-plugin-promise": "^3.3.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.0.8"
}
}