-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.01 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
{
"name": "purple",
"version": "1.0.0",
"description": "The Purple Theme",
"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/purple-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\""
},
"keywords": [
"wordpress",
"theme"
],
"author": "RogerTM",
"license": "GPL-2.0-or-later",
"devDependencies": {
"autoprefixer": "^10.2.5",
"clean-webpack-plugin": "*",
"node-sass": "^5.0.0",
"nodemon": "^2.0.7",
"postcss": "^8.2.13",
"postcss-cli": "^8.3.1",
"webpack": "^5.36.2",
"webpack-cli": "^4.6.0",
"webpack-merge": "^5.7.3"
},
"dependencies": {
"@codersrank/activity": "^0.9.14"
}
}