-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 loc) · 2.15 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
{
"name": "rhythm-server",
"description": "server for breakout, a measurement and feedback framework for human communication",
"version": "0.3.0",
"homepage": "",
"main": "src/",
"keywords": [
"feathers"
],
"license": "MIT",
"repository": {},
"author": {},
"contributors": [],
"bugs": {},
"engines": {
"node": "5.4.0"
},
"scripts": {
"test": "npm run stylecheck && npm run mocha",
"start": "node -r dotenv/config src/",
"mocha": "node -r dotenv/config ./node_modules/.bin/mocha $(find test -type f \\( ! -name load* ! -name *.swp \\) | sort)",
"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",
"stylecheck": "find src/ test/ -name *.js | xargs ./node_modules/.bin/standard"
},
"dependencies": {
"body-parser": "1.15.0",
"compression": "1.6.1",
"cors": "2.7.1",
"d3": "3.5.17",
"dotenv": "2.0.0",
"feathers": "2.0.1",
"feathers-authentication": "0.7.0",
"feathers-client": "~1.3.2",
"feathers-configuration": "0.2.2",
"feathers-errors": "2.1.0",
"feathers-hooks": "~1.5.4",
"feathers-mongoose": "3.3.6",
"feathers-rest": "1.2.4",
"feathers-socketio": "1.3.3",
"jsdom": "^9.8.3",
"mongodb": "^2.2.33",
"mongoose": "4.4.11",
"nodemailer": "^2.6.4",
"passport": "0.3.2",
"promise": "7.1.1",
"request": "^2.78.0",
"serve-favicon": "2.3.0",
"socket.io-client": "~1.4.6",
"underscore": "1.8.3",
"winston": "2.2.0"
},
"devDependencies": {
"Faker": "0.7.2",
"coveralls": "2.11.9",
"eslint": "^3.8.1",
"eslint-config-standard": "^6.2.0",
"eslint-config-standard-jsx": "^3.2.0",
"eslint-plugin-promise": "^3.3.0",
"eslint-plugin-react": "^6.4.1",
"eslint-plugin-standard": "^2.0.1",
"feathers-client": "1.1.0",
"feathers-hooks": "1.5.3",
"istanbul": "0.4.3",
"istanbul-coveralls": "1.0.3",
"mocha": "2.4.5",
"mocha-mongo": "0.2.0",
"promise": "7.1.1",
"request": "2.69.0",
"socket.io-client": "1.4.5",
"standard": "^7.1.2"
}
}