-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1.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
{
"name": "vue-simple-stepper",
"version": "1.0.0",
"description": "Monorepo of vue-simple-stepper component. Contains both the component and the showcase site.",
"repository": "https://github.com/Tauromachian/vue-simple-stepper.git",
"scripts": {
"dev:component": "yarn workspace vue-simple-stepper dev",
"dev:site": "yarn workspace site dev",
"generate": "yarn workspace site generate",
"test": "yarn workspace vue-simple-stepper test",
"deploy": "cp README.md component/README.md && yarn workspace vue-simple-stepper deploy",
"build": "yarn workspace vue-simple-stepper vite build",
"preview": "yarn workspace vue-simple-stepper vite preview",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
"format": "prettier --write src/"
},
"author": "Jose Garcia <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": [
"vue-simple-stepper",
"site"
],
"devDependencies": {
"@rushstack/eslint-patch": "^1.3.2",
"@vue/eslint-config-prettier": "^8.0.0",
"eslint": "^8.45.0",
"eslint-plugin-vue": "^9.15.1",
"prettier": "^3.0.0"
}
}