-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.61 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.61 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
{
"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 pantry.lock && pantry 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": "./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": "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"
},
"dependencies": {
"stacks": "workspace:*"
},
"workspaces": [
"storage/framework/**",
"!**/node_modules/**",
"!**/dist/**",
"!**/docs/deps/**",
"!storage/framework/server/storage/**",
"!storage/framework/cache/**"
],
"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"
}
}