-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.79 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "wordpress-docker-boilerplate",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"docker:build": "docker kill $(docker ps -q); docker-compose up --build",
"docker:serve": "docker kill $(docker ps -q); docker-compose up -d",
"docker:stop": "docker-compose down --volumes",
"webpack:serve": "webpack-dev-server --config webpack.dev.js --mode development",
"webpack:watch": "webpack --config webpack.dev.js --mode development --watch",
"webpack:dev": "webpack --config webpack.dev.js --mode development",
"webpack:build": "webpack --config webpack.prod.js --mode production",
"wordpress:config": "chmod u+x ./config/wordpress-config.sh; ./config/wordpress-config.sh",
"browsersync": "browser-sync start --proxy localhost:8080",
"rsync": "rsync -r -v --exclude-from=.rsyncexclude \"$(npx json -f './config/rsync.json' 'source')\" \"$(npx json -f './config/rsync.json' 'target')\"",
"postinstallus": "cd theme/include; composer i"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@fullhuman/postcss-purgecss": "^1.3.0",
"autoprefixer": "^9.7.6",
"babel-loader": "^8.1.0",
"babel-plugin-dynamic-import-polyfill": "^1.0.0",
"browser-sync": "^2.26.5",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^5.1.1",
"core-js": "^3.6.5",
"critical": "^1.3.9",
"critical-css-webpack-plugin": "^0.2.0",
"css-loader": "^1.0.1",
"cssnano": "^4.1.7",
"file-loader": "^3.0.1",
"lodash": "^4.17.15",
"mini-css-extract-plugin": "^0.4.4",
"postcss-advanced-variables": "^3.0.1",
"postcss-calc": "^7.0.2",
"postcss-easings": "^2.0.0",
"postcss-for": "^2.1.1",
"postcss-functions": "^3.0.0",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-mixins": "^6.2.3",
"postcss-nested": "^4.2.1",
"postcss-object-fit-images": "^1.1.2",
"postcss-scss": "^2.0.0",
"slug": "^2.1.1",
"terser-webpack-plugin": "^2.3.5",
"vue-loader": "^15.9.1",
"vue-router": "^3.1.6",
"vue-router-prefetch": "^1.6.0",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.7.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-manifest-plugin": "^2.2.0",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@barba/core": "^2.9.7",
"@barba/css": "^2.1.15",
"@barba/prefetch": "^2.1.10",
"@vue/composition-api": "^0.5.0",
"animejs": "^3.2.0",
"flickity": "^2.2.1",
"flickity-fade": "^1.0.0",
"lozad": "^1.14.0",
"object-fit-images": "^3.2.4",
"scrollmagic": "^2.0.7",
"tailwindcss": "^1.3.4",
"three": "^0.114.0",
"vue": "^2.6.11",
"zenscroll": "^4.0.2"
}
}