-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.1 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
{
"name": "blog",
"version": "1.0.0",
"description": "https://blog.usarr.tech repository",
"main": "index.js",
"type": "module",
"engines": {
"node": "18.x"
},
"scripts": {
"build": "hugo --minify",
"buildindex": "ALGOLIA_ADMIN_API_KEY=$ALGOLIA_ADMIN_API_KEY && hugo --minify && npm install && npm run index-articles",
"index-articles": "node scripts/index-algolia-posts.cjs",
"dev": "hugo server -F",
"now-build": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/usarral/blog.git"
},
"keywords": [],
"author": "Carlos Sesma",
"license": "ISC",
"bugs": {
"url": "https://github.com/usarral/blog/issues"
},
"homepage": "https://github.com/usarral/blog#readme",
"devDependencies": {
"hugo-bin": "^0.92.3",
"standard": "^17.0.0"
},
"eslintConfig": {
"extends": "./node_modules/standard/eslintrc.json"
},
"dependencies": {
"algoliasearch": "^4.14.2",
"axios": "^1.1.2",
"dotenv": "^16.0.3",
"fs": "^0.0.1-security",
"path": "^0.12.7",
"rss-to-json": "^2.1.0",
"url": "^0.11.0"
}
}