-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.29 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
{
"name": "theming",
"version": "1.0.0",
"description": "WordPress Framework",
"scripts": {
"build": "npm run css && webpack --config webpack.prod.js",
"css-compile": "node-sass --include-path node_modules --output-style compressed --source-map true --source-map-contents true --precision 6 assets/src/scss -o assets/dist/css/",
"css-prefix": "postcss --replace assets/dist/css/style.css --use autoprefixer --map",
"css": "npm run css-compile && npm run css-prefix",
"watch": "nodemon -e scss -x \"npm run css && webpack --config webpack.dev.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/themingisprose/theming.git"
},
"keywords": [
"wordpress",
"framework",
"wordpress-framework",
"theme"
],
"author": "Theming is Prose",
"license": "GPL-2.0-or-later",
"bugs": {
"url": "https://github.com/themingisprose/theming/issues"
},
"homepage": "https://github.com/themingisprose/theming#readme",
"devDependencies": {
"@popperjs/core": "^2.11.6",
"autoprefixer": "^10.4.13",
"bootstrap": "^5.2.2",
"clean-webpack-plugin": "^4.0.0",
"node-sass": "^8.0.0",
"nodemon": "^2.0.20",
"postcss-cli": "^10.0.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0",
"webpack-merge": "^5.8.0"
}
}