-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbox.json
executable file
·52 lines (52 loc) · 1.74 KB
/
box.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
{
"name":"My ColdBox App",
"version":"1.0.0",
"author":"You",
"location":"forgeboxStorage",
"slug":"my-coldbox-app",
"createPackageDirectory":false,
"type":"mvc",
"keywords":"",
"homepage":"",
"documentation":"",
"repository":{
"type":"",
"url":""
},
"bugs":"",
"shortDescription":"",
"contributors":[],
"ignore":[],
"devDependencies":{
"testbox":"^5.0.0",
"commandbox-dotenv":"*",
"commandbox-cfconfig":"*",
"commandbox-cfformat":"*"
},
"installPaths":{
"coldbox":"coldbox/",
"testbox":"testbox/",
"cbwire":"modules/cbwire/",
"qb":"modules/qb/",
"mockdatacfc":"modules/mockdatacfc/"
},
"dependencies":{
"coldbox":"^7.0.0",
"cbwire":"3.1",
"qb":"^9.5.0",
"mockdatacfc":"^3.6.0+13"
},
"scripts":{
"postInstall":"pathExists .env || cp .env.example .env && package set ignore=[]",
"format":"cfformat run config/,handlers/,interceptors/,models/,modules_app/,tests/specs/,*.cfc ./.cfformat.json --overwrite",
"format:check":"cfformat check config/,handlers/,interceptors/,models/,modules_app/,tests/specs/,*.cfc ./.cfformat.json",
"format:watch":"cfformat watch path='config/,handlers/,interceptors/,models/,modules_app/,tests/specs/,*.cfc' settingsPath='.cfformat.json'",
"docker:build":"!docker build --no-cache -t my-coldbox-app -f ./build/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 build/docker-compose.yaml ${1}"
},
"testbox":{
"runner":"/tests/runner.cfm"
}
}