-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·71 lines (71 loc) · 2.63 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
{
"name": "GWF-2020-theme",
"version": "1.0.0",
"description": "Build files based on Understrap",
"main": "index.js",
"scripts": {
"bs": "browser-sync start --config src/build/browser-sync.config.js",
"css": "npm-run-all css-compile css-minify",
"css-compile": "sass --style expanded --source-map --embed-sources --no-error-css --quiet assets/scss/main.scss:assets/css/main.css assets/scss/editor-styles.scss:assets/css/editor-styles.css assets/scss/publication-report.scss:assets/css/publication-report.css",
"css-minify": "cleancss -O1 --format breakWith=lf --with-rebase --source-map --source-map-inline-sources --output assets/css/ --batch --batch-suffix \".min\" \"assets/css/*.css\" \"!assets/css/*.min.css\" \"!assets/css/*rtl*.css\"",
"js": "npm-run-all js-minify",
"js-minify": "terser assets/js/theme.js --output assets/js/theme.min.js",
"watch": "npm-run-all --parallel watch-run-*",
"watch-bs": "npm-run-all --parallel bs watch-run-*",
"watch-run-css": "nodemon --watch assets/scss/ --ext scss --exec \"npm-run-all css\"",
"watch-run-js": "nodemon --watch assets/js/ --ext js --exec \"npm-run-all js\""
},
"nodemonConfig": {
"ignore": [
"assets/js/*.min.js"
]
},
"babel": {
"extends": "./src/build/babel.config.js"
},
"engines": {
"node": ">=18",
"npm": ">=8.6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/thegreenwebfoundation/tgwf-2020"
},
"keywords": [
"wordpress",
"theme",
"framework"
],
"author": "Hannah Smith (https://github.com/hanopcan)",
"license": "GPL-3.0",
"licenseUrl": "https://www.gnu.org/licenses/gpl-3.0.html",
"bugs": {
"url": "https://github.com/thegreenwebfoundation/tgwf-2020/issues"
},
"homepage": "https://wwww.thegreenwebfoundation.org",
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"@popperjs/core": "^2.11.8",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-multi-entry": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"autoprefixer": "^10.4.19",
"browser-sync": "^3.0.2",
"browserslist": "^4.22.1",
"caniuse-lite": "^1.0.30001547",
"clean-css-cli": "^5.6.3",
"font-awesome": "^4.7.0",
"nodemon": "^3.1.0",
"npm-run-all": "^4.1.5",
"popper.js": "^1.16.1",
"postcss": "^8.4.38",
"postcss-cli": "^11.0.0",
"postcss-understrap-palette-generator": "git+https://github.com/understrap/postcss-understrap-palette-generator.git",
"rollup": "^4.13.0",
"sass": "^1.72.0",
"terser": "^5.29.2"
}
}