-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.57 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.57 KB
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
68
69
70
71
72
73
74
75
76
{
"name": "stacks",
"type": "module",
"version": "0.0.0",
"private": true,
"description": "Your project description",
"author": "your-name <your-email>",
"contributors": ["Chris Breuer <chris@stacksjs.org>"],
"license": "MIT",
"funding": "https://github.com/sponsors/chrisbbreuer",
"homepage": "https://github.com/stacksjs/stacks#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/stacksjs/stacks.git"
},
"bugs": {
"url": "https://github.com/stacksjs/stacks/issues"
},
"scripts": {
"build:reset": "rm -rf node_modules bun.lock && bun install && ./buddy generate:model-files && ./buddy generate:model-files/buddy generate:model-files/buddy lint:fix && cd storage/framework && bun run build && cd ../../",
"buddy": "bun ./storage/framework/core/buddy/src/cli.ts",
"stacks": "./buddy",
"setup": "./storage/framework/scripts/setup.sh",
"fresh": "./buddy fresh",
"clean": "./buddy clean",
"upgrade": "./buddy upgrade",
"dev": "./buddy dev",
"development": "./buddy dev",
"build": "./buddy build",
"prod": "./buddy build",
"deploy": "./buddy deploy",
"lint": "./buddy lint",
"lint:fix": "./buddy lint:fix",
"format": "./buddy format",
"format:check": "./buddy format:check",
"serve": "./buddy serve",
"make": "./buddy make",
"make:component": "./buddy make:component",
"make:function": "./buddy make:function",
"make:database": "./buddy make:migration",
"make:migration": "./buddy make:migration",
"make:notification": "./buddy make:notification",
"make:factory": "./buddy make:factory",
"make:lang": "./buddy make:lang",
"make:stack": "./buddy make:stack",
"key:generate": "./buddy key:generate",
"commit": "./buddy commit",
"release": "./buddy release",
"changelog": "./buddy changelog",
"generate": "./buddy generate",
"typecheck": "bun tsc --noEmit",
"types:check": "bun tsc --noEmit",
"types:fix": "./buddy types:fix",
"test": "./buddy test",
"test:ui": "./buddy test:ui",
"test:coverage": "./buddy test:coverage",
"test:types": "./buddy test:types",
"bud": "./buddy",
"stx": "./buddy",
"postinstall": "bun scripts/postinstall.ts"
},
"dependencies": {
"@stacksjs/ts-cloud": "0.1.11",
"@stacksjs/ts-cloud-types": "0.1.9",
"bun-query-builder": "^0.1.12",
"stacks": "workspace:*"
},
"workspaces": [
"storage/framework/**",
"!**/node_modules/**",
"!**/dist/**",
"!**/docs/deps/**",
"!storage/framework/server/storage/**",
"!storage/framework/cache/**"
]
}