-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 998 Bytes
/
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
{
"name": "vue-global-loader-monorepo",
"private": true,
"packageManager": "pnpm@8.10.2",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "rm -rf dist && concurrently \"pnpm -C packages/vue-global-loader run watch\" \"pnpm -C playground install && pnpm -C playground run dev --host\"",
"build": "pnpm -C packages/vue-global-loader run build",
"build:playground": "pnpm build && pnpm -C playground run build",
"test": "pnpm build && pnpm -C tests install && pnpm -C tests run test",
"test:gui": "rm -rf dist && concurrently \"pnpm -C packages/vue-global-loader run watch\" \"pnpm -C tests install && pnpm -C tests run test:gui\"",
"prepare": "husky install"
},
"devDependencies": {
"concurrently": "^8.2.2",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"prettier-plugin-jsdoc": "^1.1.1"
},
"lint-staged": {
"*.{js,ts,vue,json,css,md}": "prettier --write"
}
}