-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.06 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
{
"name": "lti-reference-app-tool",
"version": "0.0.1",
"description": "An LTI 1.3 tool using NodeJS",
"main": "app.js",
"repository": {
"type": "git",
"url": "https://github.com/manpreet-compro/lti-seed-app.git"
},
"keywords": [
"LTI-1.3",
"LTI-Advantage",
"LTI",
"NodeJS",
"Seed-app"
],
"scripts": {
"start": "node app.js",
"start:dev": "nodemon --exec npm start",
"test": "mocha test/**/*.spec.js --exit"
},
"engines": {
"node": "10.16.0",
"npm": "6.9.0"
},
"dependencies": {
"ajv": "^6.10.2",
"body-parser": "^1.19.0",
"config": "^3.2.2",
"express": "^4.17.1",
"express-handlebars": "^3.1.0",
"express-session": "^1.16.2",
"hbs": "^4.0.4",
"helmet": "^3.21.1",
"memorystore": "^1.6.1",
"winston": "^3.2.1"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"mocha": "^6.2.0",
"nodemon": "^1.19.3",
"nyc": "^14.1.1",
"supertest": "^4.0.2"
}
}