|
4 | 4 | "version": "0.0.0",
|
5 | 5 | "private": true,
|
6 | 6 | "description": "Your project description",
|
7 |
| - "author": "Chris Breuer", |
| 7 | + "author": "your-name <your-email>", |
8 | 8 | "license": "MIT",
|
9 | 9 | "funding": "https://github.com/sponsors/chrisbbreuer",
|
10 | 10 | "homepage": "https://github.com/stacksjs/stacks#readme",
|
|
21 | 21 | "scripts": {
|
22 | 22 | "buddy": "bun --bun .stacks/core/buddy/src/cli.ts",
|
23 | 23 | "stacks": "bun run buddy",
|
| 24 | + "setup": "./.stacks/scripts/setup.sh", |
24 | 25 | "fresh": "bun run buddy fresh",
|
25 | 26 | "clean": "bun run buddy clean",
|
26 |
| - "update": "bun run buddy update", |
27 |
| - "update:dependencies": "bun run buddy update:dependencies", |
28 |
| - "update:framework": "bun run buddy update:framework", |
29 |
| - "update:package-manager": "bun run buddy update:package-manager", |
30 |
| - "update:node": "bun run buddy update:node", |
| 27 | + "upgrade": "bun run buddy upgrade", |
| 28 | + "upgrade:dependencies": "bun run buddy update:dependencies", |
| 29 | + "upgrade:framework": "bun run buddy update:framework", |
| 30 | + "upgrade:package-manager": "bun run buddy update:package-manager", |
| 31 | + "upgrade:bun": "bun run buddy update:node", |
31 | 32 | "dev": "bun run buddy dev",
|
32 | 33 | "dev:components": "bun run buddy dev:components",
|
33 | 34 | "dev:desktop": "bun run buddy dev:desktop",
|
|
41 | 42 | "build:web-components": "bun run buddy build:web-components",
|
42 | 43 | "build:functions": "bun run buddy build:functions // needs to have option to ",
|
43 | 44 | "build:docs": "bun run buddy build:docs",
|
44 |
| - "build:pages": "bun run buddy build:pages // needs to auto-generate server", |
45 | 45 | "build:stacks": "bun run buddy build:stacks",
|
46 | 46 | "prod": "bun run buddy build",
|
47 | 47 | "prod:components": "bun run buddy build:components",
|
48 | 48 | "prod:vue-components": "bun run buddy build:web-components",
|
49 | 49 | "prod:web-components": "bun run buddy build:web-components",
|
50 | 50 | "prod:functions": "bun run buddy build:functions // needs to have option to ",
|
51 | 51 | "prod:docs": "bun run buddy build:docs",
|
52 |
| - "prod:pages": "bun run buddy build:pages // needs to auto-generate server", |
| 52 | + "prod:views": "bun run buddy build:views", |
53 | 53 | "prod:stacks": "bun run buddy build:stacks",
|
54 | 54 | "prod:all": "bun run buddy build:all",
|
55 | 55 | "production": "bun run buddy build",
|
56 | 56 | "deploy": "bun run buddy deploy",
|
57 | 57 | "deploy:functions": "bun run buddy deploy:functions",
|
58 |
| - "deploy:pages": "bun run buddy deploy:functions", |
| 58 | + "deploy:views": "bun run buddy deploy:functions", |
59 | 59 | "deploy:docs": "bun run buddy deploy:docs",
|
60 | 60 | "deploy:all": "bun run buddy deploy:all",
|
61 | 61 | "example": "bun run buddy example",
|
|
65 | 65 | "lint:stacks": "bun run buddy lint:stacks",
|
66 | 66 | "lint:fix": "bun run buddy lint:fix",
|
67 | 67 | "serve": "bun run buddy serve",
|
68 |
| - "serve:pages": "bun run buddy serve:pages", |
| 68 | + "serve:views": "bun run buddy serve:views", |
69 | 69 | "serve:functions": "bun run buddy serve:functions",
|
70 | 70 | "make": "bun run buddy make",
|
71 | 71 | "make:component": "bun run buddy make:component",
|
|
98 | 98 | "stx": "bun run buddy"
|
99 | 99 | },
|
100 | 100 | "dependencies": {
|
101 |
| - "pg": "^8.11.3", |
102 | 101 | "stacks": "workspace:*"
|
103 | 102 | },
|
104 | 103 | "lint-staged": {
|
|
108 | 107 | "commitizen": {
|
109 | 108 | "path": ".stacks/node_modules/cz-git"
|
110 | 109 | }
|
111 |
| - } |
| 110 | + }, |
| 111 | + "workspaces": [ |
| 112 | + ".stacks/core/*", |
| 113 | + ".stacks/docs/*", |
| 114 | + ".stacks/fonts/*", |
| 115 | + ".stacks/ide/*", |
| 116 | + ".stacks/scripts/*", |
| 117 | + ".stacks/stacks/*", |
| 118 | + ".stacks/vcs/*", |
| 119 | + ".stacks", |
| 120 | + "storage/framework/*" |
| 121 | + ] |
112 | 122 | }
|
0 commit comments