summaryrefslogtreecommitdiffstats
path: root/package.json
blob: f8e250677735ee3baf68182a80a1cfcb3302834e (plain)
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
{
  "name": "ed",
  "version": "0.5.0",
  "private": true,
  "description": "Ed theme for minimal editions, based on Alex Gil theme",
  "keywords": [
    "hugo",
    "theme",
    "minimal"
  ],
  "homepage": "https://github.com/sergeyklay/gohugo-theme-ed#readme",
  "bugs": {
    "url": "https://github.com/sergeyklay/gohugo-theme-ed/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sergeyklay/gohugo-theme-ed.git"
  },
  "license": "MIT",
  "author": "Serghei Iakovlev",
  "main": "index.js",
  "scripts": {
    "clean": "rimraf public",
    "build": "npm install && hugo --source=exampleSite --gc --verbose --destination ../public",
    "build:prod": "npm install && hugo --source=exampleSite --destination ../public",
    "build:split1": "npm install && hugo --source=exampleSite --enableGitInfo --destination ../public",
    "build:preview": "npm install && HUGO_PREVIEW=true hugo --source=exampleSite --buildDrafts --buildFuture --baseURL $DEPLOY_PRIME_URL --destination ../public",
    "build:branch": "npm install && hugo --source=exampleSite --buildDrafts --buildFuture --baseURL $DEPLOY_PRIME_URL --destination ../public",
    "server": "HUGO_PREVIEW=true HUGO_ENV=development hugo server --verbose --source=exampleSite --buildDrafts --buildFuture --ignoreCache --disableFastRender",
    "lint": "npm run lint:js && npm run lint:editorconfig",
    "lint:editorconfig": "editorconfig-checker",
    "lint:js": "eslint static/js/*.js assets/js/*.js",
    "vendor:js": "ncp node_modules/jquery/dist/jquery.min.js assets/js/vendor/jquery.min.js; ncp node_modules/lunr/lunr.min.js assets/js/vendor/lunr.min.js"
  },
  "dependencies": {
    "jquery": "^3.6.0",
    "lunr": "^2.3.9"
  },
  "devDependencies": {
    "editorconfig-checker": "^4.0.2",
    "eslint": "^8.19.0",
    "rimraf": "^3.0.2",
    "ncp": "^2.0.0"
  }
}