forked from courselore/courselore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.72 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "courselore",
"version": "1.0.2",
"description": "Communication Platform for Education",
"exports": "./distribution/index.js",
"types": "./distribution/index.d.ts",
"bin": {
"courselore": "./distribution/index.js"
},
"repository": "courselore/courselore",
"keywords": [
"education",
"students",
"instructors",
"university",
"forum",
"chat"
],
"author": "CourseLore <[email protected]> (https://courselore.org)",
"license": "GPL",
"bugs": "https://github.com/courselore/courselore/issues",
"homepage": "https://github.com/courselore/courselore#readme",
"type": "module",
"scripts": {
"postinstall": "npm --prefix ./static/ install",
"start": "nodemon --watch \"./source/\" --ext ts --exec \"npm run prepare && node ./distribution/index.js\"",
"test": "prettier --check \"./source/**/*\" --end-of-line auto",
"prepare": "tsc",
"clean": "shx rm -rf ./distribution/"
},
"dependencies": {
"@leafac/caddy": "^1.0.2",
"@leafac/css": "^0.3.3",
"@leafac/express-async-handler": "^0.0.1",
"@leafac/html": "^3.0.0",
"@leafac/javascript": "^0.2.1",
"@leafac/rehype-shiki": "^2.1.1",
"@leafac/sqlite": "^2.0.2",
"@sindresorhus/slugify": "^2.1.0",
"argon2": "^0.28.3",
"casual": "^1.6.2",
"cookie-parser": "^1.4.6",
"crypto-random-string": "^4.0.0",
"csurf": "^1.11.0",
"dedent": "^0.7.0",
"deepmerge": "^4.2.2",
"escape-string-regexp": "^5.0.0",
"execa": "^6.0.0",
"express": "^4.17.2",
"express-fileupload": "^1.2.1",
"filenamify": "^5.1.0",
"fs-extra": "^10.0.0",
"jsdom": "^19.0.0",
"lodash": "^4.17.21",
"method-override": "^3.0.0",
"nodemailer": "^6.7.2",
"qrcode": "^1.5.0",
"qs": "^6.10.3",
"rehype-katex": "^6.0.2",
"rehype-raw": "^6.1.1",
"rehype-sanitize": "^5.0.1",
"rehype-stringify": "^9.0.2",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"sharp": "^0.29.3",
"shiki": "^0.10.0",
"unified": "^10.1.1",
"unist-util-visit": "^4.1.0"
},
"caddy": "2.4.6",
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/csurf": "^1.11.2",
"@types/dedent": "^0.7.0",
"@types/express": "^4.17.13",
"@types/express-fileupload": "^1.2.2",
"@types/fs-extra": "^9.0.13",
"@types/jsdom": "^16.2.14",
"@types/lodash": "^4.14.178",
"@types/method-override": "^0.0.32",
"@types/node": "^17.0.10",
"@types/nodemailer": "^6.4.4",
"@types/qrcode": "^1.4.2",
"@types/qs": "^6.9.7",
"@types/sharp": "^0.29.5",
"caxa": "^2.1.0",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"shx": "^0.3.4",
"typescript": "^4.5.5"
}
}