-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
127 lines (127 loc) · 3.91 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "fis3-plugins",
"version": "1.0.0",
"private": true,
"description": "plugins for fi3",
"keywords": [
"fis",
"fis3"
],
"homepage": "https://github.com/fisker/fis3-plugins#readme",
"bugs": {
"url": "https://github.com/fisker/fis3-plugins/issues"
},
"repository": "fisker/fis3-plugins",
"funding": "https://github.com/fisker/fis3-plugins?sponsor=1",
"license": "MIT",
"author": {
"name": "fisker Cheung",
"email": "lionkay@gmail.com",
"url": "https://www.fiskercheung.com/"
},
"sideEffects": false,
"main": "index.js",
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": []
},
"scripts": {
"build": "node \"./scripts/build-packages.mjs\"",
"bump-versions-cache": "node \"./scripts/bump-versions-cache.mjs\"",
"clean": "run-p clean:*",
"clean:dist": "del-cli packages",
"commit-versions-cache": "git add versions.json && git add packages && git commit -m \"chore: bump versions cache [skip ci]\" --no-verify && git push",
"dist": "lerna publish",
"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",
"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",
"release": "run-s clean lint build format dist bump-versions-cache commit-versions-cache"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@starptech/prettyhtml": "0.10.0",
"autoprefixer": "10.4.13",
"body-parser": "1.19.2",
"browser-sync": "2.27.10",
"clean-css": "5.2.4",
"cssgrace": "3.0.0",
"cssgrace-lite": "1.0.1",
"ejs": "3.1.8",
"eslint": "8.27.0",
"execa": "5.1.1",
"fast-cartesian-product": "2.0.1",
"htmlhint": "0.16.3",
"js-beautify": "1.14.7",
"lodash": "4.17.21",
"lodash.merge": "4.6.2",
"morgan": "1.10.0",
"postcss": "8.4.19",
"postcss-load-config": "4.0.1",
"posthtml": "0.16.6",
"posthtml-beautify": "0.7.0",
"prettier": "2.6.2",
"promise-synchronizer": "3.0.0",
"pug": "3.0.2",
"sass": "1.51.0",
"serve-directory": "4.0.0",
"serve-directory-theme-octicons": "3.0.0",
"standard": "16.0.4",
"stylelint": "14.15.0",
"terser": "5.10.0",
"uglify-js": "3.14.5",
"yargs": "16.2.0",
"yog-devtools": "0.1.1"
},
"devDependencies": {
"@babel/core": "7.20.2",
"@babel/preset-env": "7.20.2",
"@commitlint/cli": "17.2.0",
"@fisker/commitlint-config": "2.0.5",
"@fisker/eslint-config": "10.2.4",
"@fisker/husky-config": "4.1.2",
"@fisker/lint-staged-config": "3.1.5",
"@fisker/prettier-config": "5.0.6",
"@rollup/plugin-babel": "6.0.2",
"@rollup/plugin-commonjs": "23.0.2",
"@rollup/plugin-json": "5.0.1",
"@rollup/plugin-node-resolve": "15.0.1",
"babel-plugin-transform-async-to-promises": "0.8.18",
"core-js": "3.26.1",
"cz-conventional-changelog": "3.3.0",
"del-cli": "5.0.0",
"eslint": "8.27.0",
"esm-utils": "4.1.0",
"husky": "8.0.3",
"latest-version": "7.0.0",
"lerna": "6.0.3",
"lint-staged": "13.0.3",
"listr": "0.14.3",
"make-dir": "3.1.0",
"markdownlint-cli": "0.32.2",
"mkdirp": "1.0.4",
"npm-run-all": "4.1.5",
"prettier": "2.6.2",
"rollup": "3.3.0",
"rollup-plugin-prettier": "3.0.0",
"sort-object-keys": "1.1.3",
"sort-package-json": "2.1.0",
"write-prettier-file": "2.2.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}