-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
30 lines (30 loc) · 1.05 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
{
"name": "kobotoolbox.github.io",
"private": true,
"version": "1.0.0",
"repository": "https://github.com/kobotoolbox/kobotoolbox.github.io.git",
"bugs": "https://github.com/kobotoolbox/kobotoolbox.github.io/issues",
"scripts": {
"_styles-compile": "sass --load-path=node_modules/kobo-common/src/styles src/style.scss docs/style.css",
"_styles-prefix": "postcss docs/style.css --use=autoprefixer --map=false --output=docs/style.css",
"styles-watch": "npm run _styles-compile -- --watch",
"styles-build": "npm run _styles-compile && npm run _styles-prefix",
"jekyll-build": "jekyll build --source docs",
"jekyll-serve": "jekyll serve --watch --baseurl '' --source docs"
},
"engines": {
"node": ">=16.5.0"
},
"pre-commit": [
"styles-build"
],
"devDependencies": {
"autoprefixer": "^10.3.7",
"browserslist": "^4.17.4",
"kobo-common": "https://github.com/kobotoolbox/kobo-common.git#semver:1.17.0",
"postcss": "^8.3.9",
"postcss-cli": "^9.0.1",
"pre-commit": "^1.2.2",
"sass": "^1.43.2"
}
}