-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·47 lines (47 loc) · 1.86 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
{
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=16",
"pnpm": ">=7.29"
},
"license": "Apache-2.0",
"scripts": {
"sb:serve": "yarn --cwd packages/ui sb:serve",
"sb:build": "yarn --cwd packages/ui sb:build",
"test:all": "run-s lint:check test:theme:unit build:vite-plugin-svg test:ui:unit build:theme test:ui:cy build:ui:only-vite test:ui:after-build",
"test:theme:unit": "yarn --cwd packages/theme test",
"test:ui:unit": "yarn --cwd packages/ui test:unit",
"test:ui:cy": "yarn --cwd packages/ui cy:ci:component",
"test:ui:after-build": "yarn --cwd packages/ui test:after-build",
"build": "run-s build:theme build:vite-plugin-svg build:ui",
"build:theme": "yarn --cwd packages/theme build",
"build:vite-plugin-svg": "yarn --cwd packages/vite-plugin-svg build",
"build:ui": "yarn --cwd packages/ui build",
"build:ui:only-vite": "yarn --cwd packages/ui build:vite",
"lint:check": "run-s lint:es lint:format:check",
"lint:es": "eslint .",
"lint:es:fix": "yarn lint:es --fix",
"lint:format:base": "prettier-eslint \"**/*.{ts,js,vue,md,css,scss,sass}\"",
"lint:format:check": "yarn lint:format:base --list-different",
"lint:format:fix": "yarn lint:format:base --write",
"publish-workspaces": "lerna publish from-package"
},
"devDependencies": {
"@changesets/cli": "^2.17.0",
"@types/node": "^18.14.6",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"esbuild-jest": "^0.5.0",
"eslint": "^8.16.0",
"eslint-config-alloy": "^4.5.1",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-vue": "^9.0.1",
"eslint-plugin-vuejs-accessibility": "^2.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"prettier-eslint": "^15.0.0",
"prettier-eslint-cli": "^7.1.0",
"typescript": "5.0.1-rc"
}
}