-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 746 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 746 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "docker-wordpress-multisite",
"version": "0.0.3",
"author": "J Lopes <mail@jlopes.eu>",
"main": "index.js",
"scripts": {
"start": "npm run serve && npm run dev",
"serve": "docker-compose up -d",
"stop": "docker-compose down --remove-orphans",
"dev": "NODE_ENV=development vite build --watch",
"build": "vite build",
"multisite:enable": "docker-compose exec wp sh -c 'wp core multisite-convert && mv .htaccess backup.htaccess'",
"reset": "rm -rf ./data/mysql/.db"
},
"license": "MIT",
"devDependencies": {
"autoprefixer": "^10.4.4",
"postcss": "^8.5.14",
"postcss-nested": "^5.0.6",
"tailwindcss": "^3.0.23",
"vite": "^7.3.2",
"vite-plugin-live-reload": "^2.1.0"
}
}