forked from rockcookies/fnx-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.4 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"prepare": "yarn build:vite-plugin-markdown && yarn build:cli",
"bootstrap": "lerna bootstrap",
"dev": "lerna exec --scope fnx-ui yarn dev",
"clean": "lerna exec --scope fnx-ui yarn clean",
"build": "lerna exec --scope fnx-ui yarn build",
"build:site": "lerna exec --scope fnx-ui yarn build:site",
"build:cli": "lerna exec --scope @fnx-ui/cli yarn build",
"build:vite-plugin-markdown": "lerna exec --scope @fnx-ui/vite-plugin-markdown yarn build",
"test": "lerna exec --scope fnx-ui yarn test",
"test:cov": "lerna exec --scope fnx-ui yarn test:cov",
"test:update": "lerna exec --scope fnx-ui yarn test:update",
"lint": "lerna exec --scope fnx-ui yarn lint",
"changelog": "lerna-changelog",
"lerna:clean": "lerna clean -y",
"publish": "yarn run build && lerna publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rockcookies/fnx-ui.git"
},
"devDependencies": {
"eslint": "^7.32.0",
"lerna": "^4.0.0",
"lerna-changelog": "^2.2.0",
"lint-staged": "^11.2.0",
"prettier": "^2.4.1",
"yorkie": "^2.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "fnx-ui-cli commit-lint"
},
"lint-staged": {
"*.{ts,tsx,js,less}": "prettier --write",
"*.{ts,tsx}": "eslint --fix",
"*.{css,less}": "stylelint --fix"
}
}