-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
56 lines (56 loc) · 1.52 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
{
"dependencies": {
"ejs": "^3.1.6",
"feed": "^4.2.2",
"front-matter": "^4.0.2",
"glob": "^7.1.4",
"highlight.js": "^10.6.0",
"katex": "^0.13.0",
"marked": "^2.0.1",
"mkdirp": "^1.0.4",
"ncp": "^2.0.0",
"strftime": "^0.10.0"
},
"devDependencies": {
"cheerio": "^1.0.0-rc.10",
"concurrently": "^6.2.0",
"express": "^4.16.2",
"multer": "^1.4.2",
"node-fetch": "^2.6.1",
"nodemon": "^2.0.7",
"prompt": "^1.1.0",
"serve": "^11.3.2",
"trix": "^1.3.1",
"turndown": "^7.0.0"
},
"scripts": {
"build": "node index.js",
"build-prod": "node index.js",
"watch": "nodemon index.js",
"serve": "cd output && serve -l 8080",
"editor": "nodemon editor/editor.js",
"trix-editor": "node trix-editor/server.js",
"suite": "concurrently --kill-others \"npm run watch\" \"npm run serve\" \"npm run trix-editor\"",
"import": "node scripts/medium-import.js"
},
"nodemonConfig": {
"ignore": [
"output/*"
],
"ext": "js,md,css,ejs"
},
"name": "thatjdanisso.cool",
"description": "This is a collection of node scripts to build my blog - https://thatjdanisso.cool",
"version": "1.0.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/jdan/thatjdanisso.cool.git"
},
"author": "Jordan Scales <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/jdan/thatjdanisso.cool/issues"
},
"homepage": "https://github.com/jdan/thatjdanisso.cool#readme"
}