This repository has been archived by the owner on Mar 9, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
75 lines (75 loc) · 2.48 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "codeit-src",
"description": "CodeIT theme source file",
"version": "0.2.0",
"homepage": "https://codeit.suntprogramator.dev/",
"author": "Victor Pogor",
"license": "MIT",
"private": true,
"devDependencies": {
"@babel/cli": "7.17.6",
"@babel/core": "7.17.5",
"@babel/preset-env": "7.16.11",
"@commitlint/cli": "16.2.1",
"@commitlint/config-conventional": "16.2.1",
"all-contributors-cli": "6.20.0",
"babel-preset-minify": "0.5.1",
"babelify": "10.0.0",
"browserify": "17.0.0",
"commitizen": "4.2.4",
"core-js": "3.21.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.10.0",
"eslint-config-prettier": "8.5.0",
"husky": "7.0.4",
"lint-staged": "12.3.5",
"markdownlint": "0.25.1",
"minimist": "1.2.5",
"prettier": "2.5.1",
"segmentit": "2.0.3",
"standard-version": "9.3.2",
"stylelint": "14.5.3",
"stylelint-config-prettier": "9.0.3",
"stylelint-config-standard": "25.0.0",
"stylelint-scss": "4.1.0"
},
"scripts": {
"babel": "npx babel src/js --out-file assets/js/theme.min.js --source-maps",
"build": "npm run babel && hugo -v --source=exampleSite --themesDir ../.. --gc",
"build-lunr-segmentit": "browserify src/lib/lunr.segmentit.js -o assets/lib/lunr/lunr.segmentit.js -t babelify --presets @babel/preset-env --presets minify",
"start": "npm run babel && hugo server --source=exampleSite --themesDir ../.. -D --disableFastRender",
"start-production": "npm run babel && hugo server --source=exampleSite --themesDir ../.. -D --disableFastRender -e production",
"check": "htmlproofer exampleSite/public --check-html --allow-hash-href --empty-alt-ignore --disable-external",
"copy": "rm -rf resources && cp -rf exampleSite/resources resources",
"cm": "cz",
"release": "standard-version -s",
"release:minor": "standard-version -s --release-as minor",
"release:patch": "standard-version -s --release-as patch",
"release:major": "standard-version -s --release-as major"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sunt-programator/CodeIT.git"
},
"keywords": [
"gohugo",
"hugo",
"theme"
],
"bugs": {
"url": "https://github.com/sunt-programator/CodeIT/issues"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"standard-version": {
"skip": {
"commit": false,
"tag": false,
"changelog": false,
"bump": false
}
}
}