-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 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
69
70
71
72
{
"name": "bubblesweb",
"version": "0.0.0",
"private": true,
"scripts": {
"start-api": "node_modules/.bin/supervisor api-server",
"start-queue": "node_modules/.bin/supervisor queue-server",
"start-ws": "node_modules/.bin/supervisor ws-server",
"coverage": "node_modules/.bin/nyc -x **/javascripts/** --reporter=lcov npm run test ",
"coverage_without_servers": "node_modules/.bin/nyc -x **/javascripts/** --reporter=lcov npm run tests_without_servers ",
"localcoverage": "node_modules/.bin/nyc -x **/javascripts/** --reporter=html npm run test ",
"test": "node_modules/.bin/mocha --timeout 10000 --exit __tests__/*.js",
"tests_without_servers": "node_modules/.bin/mocha --timeout 10000 --exit __tests_without_servers__/*.js",
"tests_with_servers": "node_modules/.bin/mocha --timeout 10000 --exit __tests_with_servers__/*.js"
},
"dependencies": {
"@databases/pg": "^5.0.0",
"@sendgrid/mail": "^7.4.2",
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"body-parser": "~1.16.0",
"connect-redis": "^5.0.0",
"cookie-parser": "~1.4.3",
"cors": "^2.8.5",
"debug": "~2.6.0",
"diskspace": "*",
"express": "~4.14.1",
"express-fileupload": "^1.2.1",
"express-session": "^1.17.1",
"js-htmlencode": "0.3.0",
"jsonwebtoken": "^7.4.1",
"moment": "2.8.4",
"moment-timezone": "*",
"mongoose": "^4.8.5",
"morgan": "~1.7.0",
"mysql": "*",
"nodejs-websocket": "^1.7.2",
"pg": "^8.5.1",
"pug": "*",
"q": "*",
"redis": "^3.0.2",
"roarr": "^7.12.0",
"serve-favicon": "~2.3.2",
"socket.io": "^2.1.0",
"sprintf-js": "~1.0.3",
"stompit": "^1.0.0",
"supervisor": "0.12.0",
"uuid": "^8.3.1",
"winston": "^3.3.3"
},
"devDependencies": {
"chai": "^4.3.0",
"eslint": "^4.16.0",
"mocha": "^8.2.1",
"mochawesome": "*",
"nyc": "*",
"should": "~11.2.1",
"supertest": "^6.1.3"
},
"nyc": {
"all": true,
"instrument": true,
"include": [
"**/routes/*.js"
],
"reporter": [
"html",
"text-summary"
],
"report-dir": "coverage"
}
}