-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.34 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
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
80
{
"name": "tastywebpack",
"title": "Tasty Web Pack",
"version": "1.1.0",
"description": "Starter WordPress child theme webpack builder of Studiopress Genesis Framework by Tasty Digital",
"keywords": [
"WordPress",
"Genesis"
],
"homepage": "http://tastydigital.com/",
"license": "MIT",
"main": "webpack.config.js",
"repository": {
"type": "git",
"url": "https://github.com/twobyte/Webpack-Bootstrap4-Wordpress-Genesis-starter-theme"
},
"config": {
"theme": "tasty-webpack-starter",
"buildFolder": "dist",
"proxyURL": "tasty.local",
"allowedHosts": [
".tsty.co",
".tasty.local"
]
},
"browserslist": {
"production": [
"> 1%",
"last 2 version",
"ie 9"
],
"development": [
"last 1 version"
]
},
"devDependencies": {
"@babel/core": "^7.1.6",
"autoprefixer": "^9.4.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.4",
"babel-preset-env": "^1.7.0",
"caniuse-lite": "^1.0.30000913",
"css-loader": "^1.0.1",
"file-loader": "^2.0.0",
"imports-loader": "^0.8.0",
"json-loader": "^0.5.7",
"mini-css-extract-plugin": "^0.4.5",
"modernizr": "^3.6.0",
"modernizr-loader": "^1.0.1",
"node-sass": "^4.10.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss": "^7.0.6",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"resolve-url-loader": "^3.0.0",
"sass-loader": "^7.1.0",
"shx": "^0.3.2",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"webpack": "^4.26.1",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"dependencies": {
"bootstrap": "^4.1.1",
"fastclick": "^1.0.6",
"font-awesome": "^4.7.0",
"jquery": "^3.2.1",
"popper.js": "^1.14.6",
"slicknav": "^1.0.8",
"webpack-manifest-plugin": "^2.0.4"
},
"scripts": {
"clean": "shx rm -rf $npm_package_config_theme/$npm_package_config_buildFolder/ && shx echo 'Theme’s dist folder cleaned'",
"production": "npm run clean && NODE_ENV=production node_modules/.bin/webpack -p --mode production",
"start": "npm run clean && NODE_ENV=development node_modules/.bin/webpack-dev-server --open --mode development",
"postinstall": "cd $npm_package_config_theme && composer install && cd .. && npm run production"
}
}