-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.37 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.37 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "stacks",
"version": "0.0.0",
"author": "your-name <your-email>",
"repository": {
"type": "git",
"url": "git+https://github.com/stacksjs/stacks.git"
},
"dependencies": {
"@stacksjs/stx": "^0.2.11",
"ofetch": "^1.4.1",
"perfect-debounce": "^1.0.0",
"pretty-bytes": "^7.0.0",
"stacks": "workspace:*"
},
"devDependencies": {
"@stacksjs/ts-cloud-types": "^0.1.9",
"@types/leaflet": "^1.9.21"
},
"bugs": {
"url": "https://github.com/stacksjs/stacks/issues"
},
"contributors": [
"Chris Breuer <chris@stacksjs.org>"
],
"description": "Your project description",
"funding": "https://github.com/sponsors/chrisbbreuer",
"git-hooks": {
"pre-commit": {
"staged-lint": {
"*.{js,ts,json,yaml,yml,md}": "bunx --bun pickier lint --fix"
}
},
"commit-msg": "bunx gitlint --edit .git/COMMIT_EDITMSG"
},
"homepage": "https://github.com/stacksjs/stacks#readme",
"license": "MIT",
"private": true,
"scripts": {
"build:reset": "rm -rf node_modules && bun install && ./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": "./bootstrap",
"fresh": "./buddy fresh",
"clean": "./buddy clean",
"upgrade": "./buddy upgrade",
"dev": "bun ./storage/framework/core/buddy/src/cli.ts dev",
"dev:frontend": "bun --watch serve.ts",
"development": "bun ./storage/framework/core/buddy/src/cli.ts dev",
"build": "bun build.ts",
"build:frontend": "bun build.ts",
"build:stacks": "./buddy build",
"preview": "bun preview.ts",
"start": "bun serve.ts",
"prod": "./buddy build",
"deploy": "cloud deploy --env production --skip-security-scan",
"deploy:staging": "cloud deploy --env staging --skip-security-scan",
"deploy:dry": "cloud deploy --env production --dry-run --skip-security-scan",
"deploy:staging:dry": "cloud deploy --env staging --dry-run --skip-security-scan",
"deploy:stacks": "./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": "bunx 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"
},
"system": {
"bun": "^1.3.0",
"sqlite": "^3.47.2"
},
"type": "module",
"workspaces": [
"storage/framework/**",
"!**/node_modules/**",
"!**/dist/**",
"!**/docs/deps/**",
"!storage/framework/server/storage/**",
"!storage/framework/cache/**"
]
}