-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 3.3 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@a-luna/svelte-mono",
"license": "MIT",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "https://github.com/a-luna/svelte-mono.git"
},
"scripts": {
"lint": "pnpm -r lint",
"format": "pnpm -r format",
"check": "pnpm -r check",
"inst:ui": "pnpm --filter=@a-luna/shared-ui install",
"inst:color": "pnpm --filter=@a-luna/svelte-color-tools install",
"inst:site": "pnpm --filter=@a-luna/portfolio install",
"inst:base64": "pnpm --filter=@a-luna/svelte-base64 install",
"build": "pnpm run build:all",
"build:all": "pnpm run inst:ui && pnpm run build:ui && pnpm inst:color && pnpm build:color && pnpm run inst:site && pnpm run build:site && pnpm run inst:base64 && pnpm run build:base64",
"build:ui": "pnpm --filter=@a-luna/shared-ui run build",
"build:color": "pnpm --filter=@a-luna/svelte-color-tools run build",
"build:site": "pnpm --filter=@a-luna/portfolio run build",
"build:base64": "pnpm --filter=@a-luna/svelte-base64 run build",
"check:ui": "pnpm --filter=@a-luna/shared-ui run check",
"update": "pnpm run update:all",
"update:all": "pnpm run update:ui && pnpm update:color && pnpm --filter=@a-luna/portfolio update && pnpm --filter=@a-luna/svelte-base64 update",
"update:ui": "pnpm --filter=@a-luna/shared-ui update",
"update:color": "pnpm run build:ui && pnpm --filter=@a-luna/svelte-color-tools update",
"update:site": "pnpm run build:ui && pnpm --filter=@a-luna/portfolio update",
"update:base64": "pnpm run build:ui && pnpm --filter=@a-luna/svelte-base64 update",
"run:color": "pnpm --filter=@a-luna/svelte-color-tools run dev",
"run:site": "pnpm --filter=@a-luna/portfolio run dev",
"run:base64": "pnpm --filter=@a-luna/svelte-base64 run dev",
"run:ui": "pnpm --filter=@a-luna/shared-ui run dev",
"dev:color": "pnpm run build:ui && pnpm run run:color",
"dev:site": "pnpm run build:ui && pnpm run run:site",
"dev:base64": "pnpm run build:ui && pnpm run run:base64",
"dev:ui": "pnpm pnpm run run:ui",
"preview:site": "pnpm run update:site && pnpm run build:site && pnpm --filter=@a-luna/portfolio run preview",
"preview:base64": "pnpm run update:base64 && pnpm run build:base64 && pnpm --filter=@a-luna/svelte-base64 run preview",
"test:ui": "pnpm --filter=@a-luna/shared-ui run test",
"test:base64": "pnpm --filter=@a-luna/svelte-base64 run test",
"iprod:ui": "pnpm --filter=@a-luna/shared-ui install --no-frozen-lockfile",
"iprod:site": "pnpm --filter=@a-luna/portfolio install --no-frozen-lockfile",
"iprod:base64": "pnpm --filter=@a-luna/svelte-base64 install --no-frozen-lockfile",
"bprod:site": "pnpm --filter=@a-luna/portfolio run build:prod",
"bprod:base64": "pnpm --filter=@a-luna/svelte-base64 run build:prod",
"deploy:site": "NODE_ENV=production && pnpm run iprod:ui && pnpm run build:ui && pnpm run iprod:site && pnpm run bprod:site",
"deploy:base64": "NODE_ENV=production && pnpm run iprod:ui && pnpm run build:ui && pnpm run iprod:base64 && pnpm run bprod:base64"
},
"dependencies": {
"svelte": "^4.2.7"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@svitejs/changesets-changelog-github-compact": "^1.1.0",
"prettier": "^3.1.1",
"prettier-plugin-svelte": "^3.1.2"
},
"type": "module",
"private": true,
"workspaces": [
"packages/shared-ui",
"packages/svelte-color-tools",
"apps/portfolio",
"apps/svelte-base64"
]
}