forked from kiron/h5p-lti-1p0-provider
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
71 lines (71 loc) · 1.83 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
{
"name": "h5p-lti-1p0-provider",
"version": "1.0.0",
"description": "An application for building H5P interactions and serving them over LTI v1.0 / v1.1",
"main": "server.js",
"scripts": {
"start": "node src/server",
"start:dev": "nodemon src/server",
"download": "yarn download:h5p && yarn download:content-type-cache",
"test": "jest",
"download:content-type-cache": "node scripts/update-real-content-type-cache.js",
"download:h5p": "sh scripts/install.sh"
},
"engines": {
"node": ">=15.0.0",
"yarn": "1.x"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"singleQuote": false,
"arrowParens": "avoid",
"printWidth": 80
},
"author": "Dom Starkey",
"license": "MIT",
"dependencies": {
"@lumieducation/h5p-express": "^9.3.1",
"@lumieducation/h5p-html-exporter": "^9.3.1",
"@lumieducation/h5p-mongos3": "^9.3.1",
"@lumieducation/h5p-server": "^9.3.1",
"axios": "^0.23.0",
"body-parser": "^1.19.0",
"cache-manager": "^3.4.4",
"cache-manager-redis-store": "^2.0.0",
"connect-redis": "^6.0.0",
"crc": "^3.8.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-fileupload": "^1.2.1",
"express-session": "^1.17.2",
"fs-extra": "^10.0.0",
"helmet": "^4.6.0",
"https": "^1.0.0",
"i18next": "^21.3.3",
"i18next-fs-backend": "^1.1.1",
"i18next-http-middleware": "^3.1.4",
"ims-lti": "^3.0.2",
"merge": "^2.1.1",
"mimetype": "^0.0.8",
"pug": "^3.0.2",
"qs": "^6.10.1",
"redis": "^3.1.2",
"saslprep": "^1.0.3",
"util": "^0.12.4"
},
"devDependencies": {
"jest": "^27.3.1",
"nodemon": "^2.0.14",
"supertest": "^6.1.6"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
},
"volta": {
"node": "16.5.0"
}
}