forked from js-kyle/nodejs-lti-provider
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
32 lines (32 loc) · 897 Bytes
/
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
{
"name": "nodejs-lti-canvas-groups",
"version": "1.4.4",
"description": "Canvas LTI Application for listing and exporting groups and group members in groupsets.",
"main": "app.js",
"scripts": {
"start": "node app",
"dev": "nodemon --ignore 'db/*.sqlite3*' --ignore log/logfiles/ --ignore sessions/ app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Rolf Johansson",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.17.1",
"express-session": "^1.17.1",
"helmet": "^3.23.3",
"http-link-header": "^1.0.3",
"ims-lti": "^0.2.1",
"node-cache": "^4.2.1",
"pug": "^3.0.2",
"session-file-store": "^1.5.0",
"sqlite3": "^5.1.6",
"winston": "^3.3.3"
},
"devDependencies": {
"nodemon": "^2.0.22"
}
}