-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 4.21 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 4.21 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
104
105
106
107
108
109
110
{
"name": "wildloop",
"version": "0.0.0",
"author": "Chris Breuer <chris@stacksjs.org>",
"repository": {
"type": "git",
"url": "git+https://github.com/stacksjs/wildloop.git"
},
"dependencies": {
"@iconify-json/lucide": "^1.2.131",
"@stacksjs/mobile": "^0.74.45",
"@ts-analytics/tracking": "^0.1.15",
"bun-query-builder": "0.2.69",
"stacks": "^0.74.46",
"ts-health": "^0.1.0",
"ts-maps": "^0.3.7",
"ts-qr-codes": "^0.1.8",
"ts-web-scraper": "^0.1.10"
},
"bugs": {
"url": "https://github.com/stacksjs/wildloop/issues"
},
"contributors": [
"Chris Breuer <chris@stacksjs.org>"
],
"description": "Find and track trails for running and hiking, with live GPS, segments and a social feed. Every closed loop also claims territory.",
"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://wildloop.org",
"license": "MIT",
"private": true,
"scripts": {
"build:brand": "bun scripts/build-brand-assets.ts",
"build:maps": "bun scripts/build-maps.ts",
"build:mobile-associations": "bun scripts/generate-mobile-associations.ts",
"build:reset": "rm -rf node_modules pantry.lock && bun install && ./buddy generate:types && ./buddy lint:fix",
"buddy": "./buddy",
"stacks": "./buddy",
"setup": "./bootstrap",
"fresh": "./buddy fresh",
"clean": "./buddy clean",
"upgrade": "./buddy upgrade",
"dev": "./buddy dev",
"dev:frontend": "./buddy serve",
"development": "./buddy dev",
"build": "bun build.ts",
"build:frontend": "bun build.ts",
"build:stacks": "./buddy build",
"build:android": "./buddy build:android",
"build:ios": "./buddy build:ios",
"preview": "./buddy preview",
"start": "./buddy serve",
"prod": "./buddy build",
"prod:android": "bun run build:android",
"prod:ios": "bun run build:ios",
"deploy": "bun scripts/push-env-keys.ts --env production && cloud deploy --env production --yes",
"deploy:env-keys": "bun scripts/push-env-keys.ts",
"deploy:staging": "bun scripts/push-env-keys.ts --env staging && cloud deploy --env staging --yes",
"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": "bun x --bun tsc --noEmit -p tsconfig.json --pretty false",
"typecheck:app": "bun x --bun tsc --noEmit -p tsconfig.json --pretty false",
"types:check": "bun x --bun tsc --noEmit -p tsconfig.json --pretty false",
"types:fix": "./buddy types:fix",
"test": "./buddy test",
"preview:android": "bun scripts/run-mobile-e2e.ts android --preview",
"preview:iphone": "bun scripts/run-ios-device.ts",
"preview:iphone:bundled": "bun scripts/run-ios-device.ts --bundled",
"preview:ios": "bun scripts/run-mobile-e2e.ts ios --preview",
"check:iphone": "bun scripts/run-ios-device.ts --compile-only",
"test:e2e:android": "bun scripts/run-mobile-e2e.ts android",
"test:e2e:ios": "bun scripts/run-mobile-e2e.ts ios",
"test:ui": "./buddy test:ui",
"test:coverage": "./buddy test:coverage",
"test:types": "./buddy test:types",
"bud": "./buddy",
"stx": "./buddy"
},
"type": "module",
"devDependencies": {
"@types/bun": "^1.4.2"
}
}