-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
28 lines (28 loc) · 1.15 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
{
"name": "notivue-monorepo",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "pnpm build && concurrently \"pnpm -C packages/notivue run watch\" \"pnpm -C playground install && pnpm -C playground run dev --host\"",
"dev:astro": "pnpm build && concurrently \"pnpm -C packages/notivue run watch\" \"pnpm -C astro-playground install && pnpm -C astro-playground run dev --host\"",
"build": "pnpm -C packages/notivue run build",
"build:playground": "pnpm build && pnpm install && pnpm -C playground run build",
"test": "pnpm build && pnpm install && pnpm -C tests run test",
"test:gui": "pnpm build && concurrently \"pnpm -C packages/notivue run watch\" \"pnpm -C tests install && pnpm -C tests run test:gui\"",
"test:unit": "pnpm -C tests run test:unit",
"prepare": "husky"
},
"devDependencies": {
"concurrently": "^8.2.2",
"husky": "^9.1.5",
"lint-staged": "^15.2.9",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1"
},
"lint-staged": {
"*.{js,ts,vue,json,css,md}": "prettier --write"
}
}