-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
46 lines (46 loc) · 1.44 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
{
"name": "jimniels-blog",
"version": "1.0.0",
"description": "[jim-nielsen.com/blog](http://jim-nielsen.com/blog)",
"main": "metalsmith.js",
"type": "module",
"engines": {
"node": ">=13.2.0"
},
"dependencies": {
"browser-sync": "^2.26.14",
"cheerio": "^1.0.0-rc.5",
"highlight.js": "^11.4.0",
"html-validate": "^7.3.3",
"jsdom": "^20.0.0",
"marked": "^4.0.12",
"metalsmith": "^2.3.0",
"multimatch": "^5.0.0",
"node-fetch": "^3.2.0",
"nodemon": "^2.0.7",
"prop-types": "^15.7.2",
"psl": "^1.8.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"browser_sync": "browser-sync start --server build --browser=chrome",
"copy-css": "cp node_modules/highlight.js/styles/atom-one-*.css src/server/styles/",
"pre": "mkdir -p .cache && npm run copy-css && node scripts/cache-site-data.js",
"prestart": "npm run pre",
"start": "netlify dev --dir build --port 3000 & NODE_ENV=development nodemon --exec 'node metalsmith'",
"prebuild": "npm run pre",
"build": "NODE_ENV=production node metalsmith.js",
"postbuild": "node scripts/parse-reading-notes.js",
"validate": "html-validate build/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jimniels/blog.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jimniels/blog/issues"
},
"homepage": "https://github.com/jimniels/blog#readme"
}