forked from davidmerfield/Blot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
124 lines (124 loc) · 2.99 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
117
118
119
120
121
122
123
124
{
"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"
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"singleQuote": false,
"bracketSpacing": true,
"quoteProps": "consistent"
},
"jshintConfig": {
"browser": false,
"node": true,
"esversion": 8,
"laxbreak": true,
"globals": {
"describe": true,
"beforeEach": true,
"expect": true,
"jasmine": true,
"afterEach": true,
"it": true
},
"strict": false,
"undef": true,
"unused": true
},
"scripts": {
"test": "node tests",
"start": "node app",
"local": "NODE_PATH=app node app/local"
},
"version": "0.0.0",
"dependencies": {
"archiver": "^5.3.0",
"async": "^2.6.1",
"async-exit-hook": "^2.0.1",
"aws-sdk": "^2.814.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.4.3",
"cheerio": "^0.22.0",
"chokidar": "^3.5.3",
"clean-css": "^4.2.1",
"colors": "^1.3.2",
"compression": "^1.0.11",
"connect-redis": "^5.2.0",
"css": "^2.2.4",
"csurf": "1.9.0",
"debug": "^3.1.0",
"dropbox": "^10.5.0",
"dropbox-stream": "^2.0.0",
"express": "^4.6.1",
"express-disk-cache": "^1.0.4",
"express-rate-limit": "^5.1.3",
"express-session": "^1.16.2",
"fontkit": "^1.8.1",
"fs-extra": "^8.0.1",
"gifsicle": "^5.2.0",
"googleapis": "^85.0.0",
"hbs": "^4.1.2",
"he": "^1.1.0",
"helmet": "^3.21.2",
"highlight.js": "^10.4.1",
"hogan-express": "^0.5.2",
"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": "^9.0.0",
"imagemin-pngquant": "^9.0.2",
"imagemin-zopfli": "^7.0.0",
"isomorphic-fetch": "^3.0.0",
"katex": "^0.12.0",
"lodash": "^4.17.21",
"mailgun-js": "^0.20.0",
"marked": "^0.8.0",
"mime": "^1.3.4",
"mime-types": "^2.1.15",
"moment": "^2.24.0",
"moment-timezone": "^0.4.1",
"multiparty": "^4.2.3",
"mustache": "^2.3.0",
"node-fetch": "^2.6.7",
"node-schedule": "^0.1.16",
"pg": "^8.5.1",
"proper-lockfile": "^4.1.2",
"puppeteer": "^3.0.4",
"pushover": "^1.3.6",
"rate-limit-redis": "^2.0.0",
"redis": "^3.1.2",
"reds": "^0.2.5",
"request": "^2.72.0",
"sharp": "^0.30.1",
"simple-git": "^1.102.0",
"stripe": "^2.9.0",
"transliteration": "^0.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",
"yaml": "2.0.0-5"
},
"devDependencies": {
"blessed": "^0.1.81",
"blessed-contrib": "^4.8.21",
"diff": "^3.5.0",
"dir-compare": "^1.4.0",
"faker": "^4.1.0",
"jasmine": "^3.3.1",
"minimist": "^1.2.6",
"seedrandom": "^2.4.4",
"spritesmith": "^3.4.0"
}
}