-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
78 lines (78 loc) · 2.35 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
68
69
70
71
72
73
74
75
76
77
78
{
"name": "stacks",
"type": "module",
"version": "0.0.0",
"private": true,
"description": "Your project description",
"author": "your-name <your-email>",
"contributors": ["Chris Breuer <[email protected]>"],
"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": {
"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",
"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",
"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"
},
"dependencies": {
"stacks": "workspace:*"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-git"
}
},
"workspaces": [
"storage/framework",
"storage/framework/core",
"storage/framework/core/*",
"storage/framework/core/bun-create/*",
"storage/framework/core/components/*",
"storage/framework/docs",
"storage/framework/email",
"storage/framework/libs/*",
"storage/framework/libs/functions",
"storage/framework/libs/components/*",
"storage/framework/views/*",
"storage/framework/server"
]
}