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
124 lines (124 loc) · 3.64 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "PrairieLearn",
"description": "PrairieLearn online problem-solving system",
"version": "3.2.0",
"private": true,
"dependencies": {
"@prairielearn/prairielib": "^1.7.1",
"ace-builds": "^1.4.7",
"adm-zip": "^0.4.13",
"ajv": "^6.10.2",
"archiver": "^3.1.1",
"async": "^3.1.0",
"async-stacktrace": "0.0.2",
"aws-sdk": "^2.580.0",
"backbone": "^1.4.0",
"base64url": "^3.0.1",
"blocked": "^1.3.0",
"blocked-at": "^1.2.0",
"body-parser": "^1.19.0",
"bootstrap": "^4.4.1",
"byline": "^5.0.0",
"chart.js": "^2.9.3",
"cheerio": "^0.22.0",
"clipboard": "^2.0.4",
"cookie-parser": "^1.4.4",
"crypto-js": "^3.1.9-1",
"csv": "^5.3.0",
"csvtojson": "^2.0.10",
"debug": "^4.1.1",
"detect-mocha": "^0.1.0",
"diff": "^4.0.1",
"dockerode": "^3.0.2",
"ejs": "^3.0.1",
"express": "^4.17.1",
"fabric": "^3.5.1",
"filesize": "^6.0.1",
"fs-extra": "^8.1.0",
"googleapis": "^45.0.0",
"handlebars": "^4.5.3",
"http-status": "^1.4.1",
"javascript-natural-sort": "^0.7.1",
"jju": "^1.3.0",
"jquery": "^3.4.1",
"json-stringify-safe": "^5.0.1",
"lodash": "^4.17.15",
"lru-cache": "^5.1.1",
"mathjax": "^2.7.4",
"mersenne": "0.0.4",
"moment": "^2.24.0",
"multer": "^1.4.2",
"mustache": "^3.1.0",
"ncp": "^2.0.0",
"nodemon": "^2.0.1",
"numeric": "^1.2.6",
"oauth-signature": "^1.5.0",
"on-finished": "^2.3.0",
"parse5": "^5.1.1",
"passport": "^0.4.0",
"passport-azure-ad": "^4.2.0",
"pg": "^7.14.0",
"plist": "^3.0.0",
"popper.js": "^1.16.0",
"qrcode-svg": "^1.1.0",
"redis": "^2.8.0",
"redis-lru": "^0.6.0",
"rehype-raw": "^4.0.1",
"rehype-stringify": "^6.0.1",
"remark-math": "^2.0.0",
"remark-parse": "^7.0.2",
"remark-rehype": "^5.0.0",
"request-promise-native": "^1.0.8",
"requirejs": "^2.3.5",
"rimraf": "^3.0.0",
"s3-upload-stream": "^1.0.7",
"search-string": "^3.1.0",
"serve-favicon": "^2.5.0",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"socket.io-redis": "^5.2.0",
"streamifier": "^0.1.1",
"supports-color": "^7.1.0",
"tar": "^5.0.5",
"three": "^0.111.0",
"tmp-promise": "^2.0.2",
"unified": "^8.4.2",
"unified-stream": "^1.0.5",
"unist-util-visit": "^2.0.1",
"uuid": "^3.3.3",
"viz.js": "^2.1.2",
"winston": "^3.2.1",
"yargs": "^15.0.2",
"yargs-parser": "^16.1.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"colors": "^1.4.0",
"coveralls": "^3.0.9",
"eslint": "^6.7.2",
"jsdoc": "^3.6.3",
"json-stable-stringify": "^1.0.1",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"request": "^2.87.0",
"sinon": "^7.5.0",
"tmp": "0.1.0"
},
"scripts": {
"start": "node server.js",
"start-nodemon": "nodemon server.js",
"test": "nyc --reporter=lcov mocha tests/index.js",
"test-nocoverage": "mocha tests/index.js",
"lint-js": "eslint --ext js \"**/*.js\"",
"lint-python": "python3.6 -m flake8 ./"
},
"nyc": {
"exclude": [
"node_modules",
"public",
"tests",
"ChangeLog.md"
]
}
}