-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
32 lines (32 loc) · 1.17 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": "kobo-theme",
"version": "1.0.0",
"private": true,
"scripts": {
"postinstall": "npm run generate-icons",
"_compile": "sass --load-path=node_modules --style=expanded --source-map sass_source/sass/theme.scss source/_static/css/kobo_theme.css",
"_prefix": "postcss source/_static/css/kobo_theme.css --use=autoprefixer --map=false --output=source/_static/css/kobo_theme.css",
"_update_css": "cp source/_static/css/kobo_theme.css _build/html/_static/css/kobo-theme.css",
"dev": "sass --load-path=node_modules --watch --style=expanded --source-map sass_source/sass/theme.scss source/_static/css/kobo_theme.css",
"start": "npm run generate-icons && npm run _compile && npm run _prefix",
"generate-icons": "node ./scripts/generate_icons.js"
},
"dependencies": {
"kobo-common": "github:kobotoolbox/kobo-common#semver:1.19.0"
},
"devDependencies": {
"@vusion/webfonts-generator": "^0.8.0",
"autoprefixer": "^9.7.6",
"browserslist": "^4.16.5",
"postcss": "^8.2.13",
"postcss-cli": "^7.1.0",
"sass": "^1.43.2",
"simple-git": "^3.5.0"
},
"browserslist": [
"last 4 version"
],
"engines": {
"node": ">=0.8.0"
}
}