forked from PrairieLearn/PrairieLearn
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.64 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.64 KB
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
{
"name": "PrairieLearn",
"description": "PrairieLearn online problem-solving system",
"version": "3.0.0",
"private": true,
"dependencies": {
"@prairielearn/prairielib": "^1.5.1",
"adm-zip": "^0.4.11",
"archiver": "^2.1.1",
"async": "^2.6.1",
"async-stacktrace": "0.0.2",
"aws-sdk": "^2.246.1",
"backbone": "^1.3.3",
"base64url": "^3.0.0",
"blocked-at": "^1.1.2",
"body-parser": "^1.18.3",
"bootstrap": "^4.1.1",
"byline": "^5.0.0",
"chart.js": "^2.7.2",
"cheerio": "^0.22.0",
"clipboard": "^2.0.0",
"cookie-parser": "^1.4.3",
"crypto-js": "^3.1.8",
"csv": "^3.1.0",
"debug": "^3.1.0",
"diff": "^3.5.0",
"dockerode": "^2.5.5",
"ejs": "^2.6.1",
"express": "^4.16.3",
"fs-extra": "^6.0.0",
"googleapis": "^31.0.0",
"handlebars": "^4.0.11",
"is-my-json-valid": "^2.17.2",
"javascript-natural-sort": "^0.7.1",
"jju": "^1.3.0",
"jquery": "^3.3.1",
"json-stringify-safe": "^5.0.1",
"lodash": "^4.17.10",
"lru-cache": "^4.1.3",
"mathjax": "^2.7.4",
"mersenne": "0.0.4",
"moment": "^2.22.1",
"mustache": "^2.3.0",
"nodemon": "^1.17.5",
"numeric": "^1.2.6",
"on-finished": "^2.3.0",
"parse5": "^5.0.0",
"passport": "^0.4.0",
"passport-azure-ad": "^3.0.12",
"pg": "^7.4.3",
"plist": "^3.0.0",
"popper.js": "^1.14.0",
"qrcode-svg": "^1.0.0",
"redis": "^2.8.0",
"redis-lru": "^0.5.0",
"request-promise-native": "^1.0.5",
"requirejs": "^2.3.5",
"s3-upload-stream": "^1.0.7",
"search-string": "^3.1.0",
"serve-favicon": "^2.5.0",
"socket.io": "^2.1.1",
"socket.io-client": "^2.1.1",
"socket.io-redis": "^5.2.0",
"tar": "^4.4.4",
"three": "^0.92.0",
"uuid": "^3.2.1",
"winston": "^2.4.2",
"yargs": "^11.0.0",
"yargs-parser": "^10.0.0"
},
"devDependencies": {
"chai": "^4.1.2",
"colors": "^1.3.0",
"coveralls": "^3.0.1",
"eslint": "^4.19.1",
"jsdoc": "^3.5.5",
"mocha": "^5.2.0",
"nyc": "^11.8.0",
"request": "^2.87.0",
"tmp": "0.0.33"
},
"scripts": {
"start": "node server.js",
"start-nodemon": "nodemon server.js",
"test": "nyc --reporter=lcov mocha --exit tests/index.js",
"lint-js": "eslint --ext js \"**/*.js\"",
"lint-python": "python3.6 -m flake8 ./"
}
}