-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 960 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 960 Bytes
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
{
"name": "fastcomments-blog",
"dependencies": {
"handlebars": "^4.7.7",
"marked": "^4.0.10",
"feed": "^4.0.0",
"byte-size": "^6.2.0",
"pretty-bytes": "^5.3.0",
"reading-time": "^1.2.0"
},
"scripts": {
"serve": "serve src/static/generated",
"build-windows": "build.bat",
"build-posix": "bash build.sh",
"watch-windows": "nodemon --exec npm run \"build-windows\"",
"watch-posix": "nodemon --exec npm run \"build-posix\"",
"check-translations": "node src/check-translations.js",
"check-categories": "node src/check-categories.js",
"translate": "node src/translate-with-gpt.js"
},
"devDependencies": {
"nodemon": "^2.0.20",
"serve": "^14.2.0"
},
"nodemonConfig": {
"ignore": "src/static/generated",
"watch": "src/content",
"ext": "css,png,ico,mp4,gif,jpg,js,html,otf,md"
}
}