-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 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
29
30
31
32
33
34
35
36
37
38
39
{
"name": "components-library",
"version": "0.2.0",
"private": true,
"packageManager": "[email protected]",
"workspaces": [
"packages/*",
"sites/*"
],
"engines": {
"npm": ">=7.0.0",
"node": ">=16.0.0"
},
"scripts": {
"dev": "pnpm --filter='@sveltinio/*' dev",
"test:packages": "pnpm --filter='@sveltinio/*' test",
"build": "pnpm clean && pnpm build:packages && pnpm build:sites",
"build:packages": "pnpm --filter='@sveltinio/*' build",
"build:sites": "pnpm --filter='components.sveltin.io' build",
"format": "pnpm --filter='@sveltinio/*' format",
"lint": "pnpm --filter='@sveltinio/*' lint",
"check": "pnpm --filter='@sveltinio/*' check",
"clean": "pnpm --filter='@sveltinio/*' clean",
"prepare": "husky install",
"plop": "plop",
"release": "pnpm -r publish packages --access public",
"changeset:version": "changeset version && pnpm install --lockfile-only"
},
"devDependencies": {
"@changesets/changelog-git": "^0.1.14",
"@changesets/cli": "^2.26.2",
"@commitlint/cli": "^17.7.2",
"@commitlint/config-conventional": "^17.7.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"picocolors": "^1.0.0",
"plop": "^3.1.2"
}
}