forked from next-press/caesar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.65 KB
/
package.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
{
"name": "@next-press/caesar",
"version": "0.0.6",
"description": "NextPress docker-based development environment",
"main": "index.js",
"bin": "caesar",
"scripts": {
"build:wordpress": "docker build --rm -t nextpress/caesar-wordpress:${npm_package_version} -t nextpress/caesar-wordpress:latest ./images/wordpress",
"build:wp": "docker build --rm -t nextpress/caesar-wp:${npm_package_version} -t nextpress/caesar-wp:latest ./images/wp && docker run -d --name apache -p 8080:80 -p 4443:443 nextpress/caesar-wp",
"build:cert": "docker build --rm -t nextpress/caesar-cert:${npm_package_version} -t nextpress/caesar-cert:latest ./images/cert",
"push:wordpress": "docker push nextpress/caesar-wordpress",
"build:mkcert": "docker build --rm -t nextpress/caesar-mkcert:${npm_package_version} -t nextpress/caesar-mkcert:latest ./images/mkcert",
"push:mkcert": "docker push nextpress/caesar-mkcert",
"build": "npm run build:wordpress && npm run build:mkcert",
"push": "npm run push:wordpress && npm run push:mkcert",
"version": "echo $npm_package_version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/next-press/caesar.git"
},
"keywords": [
"docker",
"wordpress"
],
"author": "Arindo Duque <arindo@nextpress.co>",
"license": "GPL-2.0-only",
"bugs": {
"url": "https://github.com/next-press/caesar/issues"
},
"homepage": "https://github.com/next-press/caesar#readme",
"dependencies": {
"boxt": "^1.1.2",
"cli-welcome": "^2.2.2",
"commander": "^9.2.0",
"figlet": "^1.5.2",
"lodash": "^4.17.21",
"pad": "^3.2.0",
"random-words": "^1.1.2",
"slugify": "^1.6.5"
}
}