-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
71 lines (71 loc) · 1.9 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": "lti-test",
"description": "An LTI Testing Tool",
"version": "2.0.1",
"private": true,
"main": "server.js",
"repository": "https://github.com/blackboard/BBDN-LTI-Tool-Provider-Node",
"license": "MIT",
"engines": {
"node": ">=12 <16"
},
"dependencies": {
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"axios": "^0.22.0",
"body-parser": "^1.19.0",
"classnames": "^2.3.1",
"clipboardy": "^2.3.0",
"clsx": "^1.1.1",
"cookie-parser": "^1.4.5",
"core-js": "^3.18.2",
"express": "^4.17.1",
"finish": "^0.6.3",
"ims-caliper": "^1.1.0",
"ims-lti": "^3.0.2",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"mongodb": "^4.1.3",
"morgan": "^1.10.0",
"node-json-db": "^1.4.1",
"pem-jwk": "^2.0.0",
"prop-types": "^15.7.2",
"pug": "3.0.2",
"qs": "^6.10.1",
"query-string": "^7.0.1",
"react": "^17.0.2",
"react-bootstrap": "^1.6.4",
"react-dom": "^17.0.2",
"react-json-editor-ajrm": "^2.5.13",
"react-router-dom": "^5.3.0",
"request": "^2.88.0",
"toad-scheduler": "^1.5.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.8",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"babel-loader": "^8.2.2",
"babel-plugin-import": "^1.13.3",
"eslint": "^7.32.0",
"eslint-plugin-react": "^7.26.1",
"webpack": "^5.58.0",
"webpack-cli": "^4.9.0"
},
"scripts": {
"build-server": "babel server/src -d server/lib --source-maps",
"build-public": "webpack",
"prestart": "npm install; npm run build-server; npm run build-public",
"start": "node server/lib/server.js"
},
"browserslist": [
"last 2 version",
">1%",
"not dead"
]
}