-
Notifications
You must be signed in to change notification settings - Fork 89
/
package.json
116 lines (116 loc) · 2.83 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "Blot",
"repository": "https://github.com/davidmerfield/Blot",
"description": "A blogging platform",
"main": "app/index.js",
"engines": {
"node": "16.14.0",
"npm": "8.3.1"
},
"jshintConfig": {
"browser": false,
"node": true,
"esversion": 9,
"laxbreak": true,
"globals": {
"describe": true,
"beforeEach": true,
"expect": true,
"jasmine": true,
"afterEach": true,
"it": true
},
"strict": false,
"undef": true,
"unused": true
},
"scripts": {
"test": "./tests/invoke.sh",
"start": "docker-compose up --build"
},
"version": "0.0.0",
"dependencies": {
"archiver": "^5.3.0",
"async": "^2.6.4",
"async-exit-hook": "^2.0.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.1",
"cheerio": "^1.0.0-rc.12",
"chokidar": "^3.5.3",
"clean-css": "^4.2.1",
"colors": "^1.3.2",
"connect-redis": "^5.2.0",
"cookie-parser": "^1.4.6",
"css": "^2.2.4",
"csurf": "1.9.0",
"datauri": "^4.1.0",
"debug": "^3.1.0",
"dropbox": "^10.5.0",
"esbuild": "^0.17.12",
"eventsource": "^2.0.2",
"express": "^4.19.2",
"express-rate-limit": "^5.1.3",
"express-session": "^1.16.2",
"fontkit": "^1.8.1",
"fs-extra": "^11.1.0",
"gifsicle": "^3.0.4",
"googleapis": "^85.0.0",
"he": "^1.1.0",
"helmet": "^3.21.2",
"highlight.js": "^10.4.1",
"html-minifier": "^4.0.0",
"http-auth": "^3.2.3",
"imagemin": "^7.0.1",
"imagemin-giflossy": "^5.1.10",
"imagemin-jpeg-recompress": "^6.0.0",
"imagemin-mozjpeg": "^6.0.0",
"imagemin-pngquant": "^9.0.2",
"imagemin-zopfli": "^7.0.0",
"isomorphic-fetch": "^3.0.0",
"katex": "^0.16.10",
"lodash": "^4.17.21",
"mailgun-js": "^0.22.0",
"marked": "^12.0.1",
"mime": "^1.3.4",
"mime-types": "^2.1.15",
"moment": "^2.29.4",
"moment-timezone": "^0.5.35",
"multiparty": "^4.2.3",
"mustache": "^4.2.0",
"node-fetch": "^2.6.7",
"node-schedule": "^0.1.16",
"pretty": "^2.0.0",
"proper-lockfile": "^4.1.2",
"puppeteer": "^22.11.2",
"pushover": "^1.3.6",
"rate-limit-redis": "^2.0.0",
"redis": "^3.1.2",
"sharp": "^0.32.6",
"simple-git": "^3.23.0",
"stripe": "^2.9.0",
"text-to-svg": "^3.1.5",
"tldts": "^6.1.25",
"to-ico": "^1.1.5",
"transliteration": "^0.1.1",
"turndown": "^7.1.1",
"twemoji": "^1.2.0",
"twit": "^1.1.20",
"typeset": "^0.2.6",
"uglify-js": "^2.4.16",
"uuid": "^3.2.1",
"vhost": "^3.0.2",
"xml2js": "^0.5.0",
"yaml": "2.2.2"
},
"devDependencies": {
"blessed": "^0.1.81",
"depcheck": "^1.4.7",
"dir-compare": "^4.0.0",
"faker": "^4.1.0",
"jasmine": "^3.3.1",
"nock": "^13.5.4",
"nodemon": "^3.1.0",
"seedrandom": "^2.4.4",
"spritesmith": "^3.4.1"
}
}