-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.64 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.64 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
{
"name": "wordpress-theme-boilerplate",
"version": "1.0.0",
"description": "A kick starter Wordpress theme development stack. Simple Docker setup with contained phpMyAdmin + full Gulp workflow and starter theme files.",
"main": "index.js",
"scripts": {
"build": "npm run theme:build && npm run theme:zip",
"start": "npm run theme:create && npm run build && npm run docker",
"watch": "npm run docker && npm run theme:watch",
"docker": "docker-compose up -d",
"docker:down": "docker-compose down",
"docker:clear": "docker-compose down --volumes && rm -r ./wp-content/themes",
"theme:create": "gulp create",
"theme:build": "gulp build",
"theme:update": "gulp update",
"theme:watch": "gulp update && gulp watch",
"theme:zip": "gulp zip",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ninowis/wordpress-boilerstack.git"
},
"keywords": [
"wordpress",
"docker",
"gulp"
],
"author": "Guillaume Simonin",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/Ninowis/wordpress-boilerstack/issues"
},
"homepage": "https://github.com/Ninowis/wordpress-boilerstack#readme",
"dependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/polyfill": "^7.6.0",
"@babel/preset-env": "^7.6.3",
"@babel/register": "^7.6.2",
"colors": "^1.4.0",
"copy-dir": "^1.2.0",
"dotenv": "^7.0.0",
"gulp": "^4.0.1",
"gulp-replace": "^1.0.0",
"gulp-run": "^1.7.1",
"gulp-zip": "^4.2.0"
},
"babel": {
"presets": [
"@babel/preset-env"
]
}
}