-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
90 lines (90 loc) · 2.5 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "isle-server",
"version": "0.7.9",
"description": "Server program for ISLE (Interactive Statistics Learning Environment) lessons.",
"keywords": [],
"bugs": {
"url": "https://github.com/isle-project/isle-server/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/isle-project/isle-server.git"
},
"license": "AGPL-3.0-only",
"author": {
"name": "Philipp Burckhardt",
"email": "[email protected]"
},
"contributors": [
{
"name": "Philipp Burckhardt",
"email": "[email protected]"
}
],
"main": "./lib",
"scripts": {
"clean": "rm -rf ./node_modules",
"lint": "eslint lib/** test/**/*.js",
"start": "cross-env node lib/index.js",
"test": "cross-env tape \"./test/*.js\"",
"test-cov": "cross-env istanbul cover --dir ./reports/coverage --report lcov tape -- \"./test/*.js\""
},
"dependencies": {
"@faker-js/faker": "^8.2.0",
"@isle-project/email-to-institution": "^1.0.0",
"@socket.io/admin-ui": "^0.5.1",
"@stdlib/assert": "^0.0.12",
"@stdlib/constants": "^0.0.11",
"@stdlib/fs": "^0.1.1",
"@stdlib/math": "^0.0.11",
"@stdlib/process": "^0.0.12",
"@stdlib/stats": "^0.0.13",
"@stdlib/string": "^0.0.14",
"@stdlib/utils": "^0.0.12",
"adm-zip": "^0.5.10",
"archiver": "^5.3.2",
"axios": "^1.6.3",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"codecov": "^3.8.3",
"cookie-parser": "^1.4.6",
"cookie-session": "^2.0.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"debug": "^4.3.4",
"express": "^4.18.2",
"express-rate-limit": "^6.11.2",
"i18next-fs-backend": "^2.2.0",
"i18next": "^23.6.0",
"i18next-http-middleware": "^3.5.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.12.2",
"mongoose-lean-virtuals": "^0.9.1",
"morgan": "^1.10.0",
"multer": "^1.4.4",
"ncp": "^2.0.0",
"nodemailer": "6.9.9",
"passport": "^0.6.0",
"passport-jwt": "4.0.1",
"prosemirror-schema-list": "^1.3.0",
"prosemirror-tables": "^1.3.4",
"prosemirror-transform": "^1.8.0",
"qrcode": "^1.5.3",
"qs": "^6.11.2",
"response-time": "^2.3.2",
"rotating-file-stream": "^3.1.1",
"socket.io": "4.7.2",
"speakeasy": "^2.0.0",
"swagger-jsdoc": "^6.2.8",
"tldjs": "1.8.0"
},
"devDependencies": {
"chai": "^4.3.10",
"eslint": "^8.53.0",
"istanbul": "^1.1.0-alpha.1",
"proxyquire": "^2.1.3",
"supertest": "^6.3.3",
"tap-spec": "5.x.x",
"tape": "^5.7.2"
}
}