-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
98 lines (98 loc) · 3.16 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "fisker-blog",
"version": "1.0.0",
"private": true,
"description": "fisker's blog",
"keywords": [
"blog",
"fisker"
],
"homepage": "https://github.com/fisker/blog#readme",
"bugs": {
"url": "https://github.com/fisker/blog/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fisker/blog.git"
},
"license": "MIT",
"author": {
"name": "fisker Cheung",
"email": "[email protected]",
"url": "https://www.fiskercheung.com/"
},
"sideEffects": false,
"main": "index.js",
"scripts": {
"build": "run-s build:template-minify build:template-compile build:gulp",
"build:gulp": "set NODE_ENV=production && gulp build",
"build:template-compile": "lodash exports=none iife=\"(function(){%output%;return templates})()\" template=\".cache/*.jst\" -o \".cache/templates.js\"",
"build:template-minify": "node ./scripts/minify-template.js",
"clean": "run-p clean:*",
"clean:dist": "del-cli dist",
"clean:docs": "del-cli docs",
"dev": "run-s build:template-compile && gulp",
"format": "run-p format:*",
"format:eslint": "yarn lint:eslint --fix",
"format:markdown": "yarn lint:markdown --fix",
"format:package-json": "sort-package-json \"package.json\" \"packages/*/package.json\"",
"format:prettier": "yarn lint:prettier --write",
"format:stylelint": "yarn lint:stylelint --fix",
"lint": "run-p lint:*",
"lint:eslint": "eslint \"**/*.{js,mjs,vue}\"",
"lint:markdown": "markdownlint \"**/*.md\" --ignore \"**/node_modules/**\"",
"lint:package-json": "yarn run format:package-json --check",
"lint:prettier": "prettier \"**/*.{css,html,js,json,less,md,scss,ts,vue,yaml,yml}\" --check",
"lint:stylelint": "stylelint \"**/*.{css,scss,less}\"",
"release": "sh ./scripts/publish.sh",
"test": "echo \"Error: no test specified\""
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"es6-promise": "4.2.8",
"highlight.js": "11.5.1",
"localforage": "1.10.0",
"marked": "4.0.19",
"primer-markdown": "4.0.0"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"@commitlint/cli": "19.5.0",
"@fisker/commitlint-config": "2.0.5",
"@fisker/eslint-config": "10.0.13",
"@fisker/husky-config": "4.1.3",
"@fisker/lint-staged-config": "3.3.2",
"@fisker/prettier-config": "5.1.1",
"@fisker/stylelint-config": "5.2.2",
"babel-preset-minify": "0.5.2",
"browser-sync": "3.0.3",
"cz-conventional-changelog": "3.3.0",
"del-cli": "6.0.0",
"eslint": "8.39.0",
"gulp": "5.0.0",
"gulp-autoprefixer": "8.0.0",
"gulp-babel": "8.0.0",
"gulp-clean-css": "4.3.0",
"gulp-dest": "0.2.3",
"gulp-header": "2.0.9",
"gulp-rename": "2.0.0",
"gulp-sass": "5.1.0",
"gulp-size": "4.0.1",
"gulp-sourcemaps": "3.0.0",
"gulp-template": "5.0.0",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"lodash-cli": "4.17.5",
"markdownlint-cli": "0.41.0",
"npm-run-all": "4.1.5",
"prettier": "2.8.8",
"sass": "1.80.6",
"sort-package-json": "2.10.1",
"stylelint": "15.11.0"
}
}