-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbox.json
More file actions
58 lines (58 loc) · 1.9 KB
/
Copy pathbox.json
File metadata and controls
58 lines (58 loc) · 1.9 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
{
"name":"CB Genesis Starter Template",
"version":"1.0.0",
"author":"You",
"location":"forgeboxStorage",
"language":"BoxLang",
"slug":"cbgenesis",
"createPackageDirectory":false,
"type":"mvc",
"keywords":[
"starter-template",
"coldbox"
],
"homepage":"https://www.coldbox.org",
"documentation":"https://coldbox.ortusbooks.com",
"shortDescription":"This starter template will give you all the basics you need to get started with ColdBox.",
"contributors":[],
"ignore":[],
"installPathConventions":{
"modules":"lib/modules"
},
"devDependencies":{
"testbox":"be",
"commandbox-boxlang":"*",
"commandbox-migrations":"*"
},
"dependencies":{
"coldbox":"be",
"qb":"^13",
"cbmailservices":"^2",
"cbsecurity":"^3",
"cbvalidation":"^4",
"mementifier":"^3",
"vite-helpers":"^2"
},
"installPaths":{
"coldbox":"lib/coldbox/",
"testbox":"lib/testbox/",
"qb":"lib/modules/qb/",
"cbmailservices":"lib/modules/cbmailservices/",
"cbsecurity":"lib/modules/cbsecurity/",
"mementifier":"lib/modules/mementifier/",
"cbvalidation":"lib/modules/cbvalidation/",
"vite-helpers":"lib/modules/vite-helpers/"
},
"scripts":{
"postInstall":"pathExists .env || cp .env.example .env",
"format":"!boxlang format --source app/,tests/specs/,*.bx",
"format:check":"!boxlang format --check --source app/,tests/specs/,*.bx",
"docker:build":"!docker build --no-cache -t my-coldbox-app -f ./docker/Dockerfile ./",
"docker:run":"!docker run -it -p 8080:8080 my-coldbox-app",
"docker:bash":"!docker run -it my-coldbox-app /bin/bash",
"docker:stack":"!docker compose -f docker/docker-compose.yaml ${1}"
},
"testbox":{
"runner":"/tests/runner.bxm"
}
}