-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 906 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 906 Bytes
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
{
"name": "wcj2021-css",
"version": "0.0.1",
"description": "css file for WordCamp Japan 2021",
"author": "WordCamp Japan 2021 team",
"license": "GPL-2.0+",
"scripts": {
"css": "yarn build-css && yarn autoprefix",
"build-css": "node-sass --output-style expanded --indent-width 1 --indent-type tab src/scss/style.scss src/css/style.css",
"autoprefix": "npx postcss src/css/*.css --use autoprefixer -d src/css/ --no-map",
"watch-sass": "onchange \"src/scss/*.scss\" -- npm run css",
"watch": "onchange 'src/scss/*.scss' -e '**/*.DS_Store' -- npm run css"
},
"dependencies": {
"@wordpress/browserslist-config": "^2.7.0",
"autoprefixer": "^9.8.6",
"node-sass": "^4.14.1",
"node-sass-import": "^2.0.1",
"onchange": "^7.0.2",
"postcss": "^7.0.32",
"postcss-cli": "^7.1.1"
},
"browserslist": [
"extends @wordpress/browserslist-config"
]
}