-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 1.05 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
{
"name": "florish",
"version": "0.0.1",
"description": "Florish Co, WordPress site, theme, and MySQL database. This exists as an extension of the main package.json file, which is located in themes/florish.",
"license": "MIT",
"scripts": {
"start": "npm-run-all detach dev:theme",
"stop": "npm run down",
"up": "docker compose up",
"detach": "docker compose up --detach",
"down": "docker compose down",
"destroy": "docker compose down --volumes",
"destroy:all": "docker compose down --volumes --rmi all",
"dev": "npm-run-all --parallel up dev:theme",
"dev:theme": "npm run x -- dev",
"build": "npm-run-all --parallel build:*",
"build:docker": "docker compose build",
"build:php": "npm run x -- build:php",
"build:theme": "npm run x -- build",
"i": "npm install --prefix web/wp-content/themes/florish/",
"x": "npm run --prefix web/wp-content/themes/florish/",
"postinstall": "npm run i"
},
"devDependencies": {
"@types/wpapi": "^1.1.4",
"eslint": "^8.57.0",
"npm-run-all": "^4.1.5"
}
}