-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.06 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
{
"name": "kibble-template-tvod",
"version": "0.0.3",
"description": "Base template for TVOD kibble sites",
"scripts": {
"start": "npm run css && npm-run-all --parallel css:watch kibble:watch",
"css": "node-sass ./site/styles/main.scss ./site/static/styles/main.css",
"css:watch": "npm run css -- --watch",
"css:build": "postcss ./site/static/styles/main.css --use autoprefixer --use cssnano -r",
"kibble": "kibble render",
"kibble:watch": "kibble render --watch",
"kibble:build": "kibble publish",
"build": "npm-run-all css css:build kibble:build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/indiereign/shift72-kibble-template-svod.git"
},
"keywords": [
"Kibble",
"Template"
],
"engines": {
"node": ">=10.0.0"
},
"author": "Shift 72",
"dependencies": {
"autoprefixer": "^10.4.13",
"bootstrap": "^4.3.1",
"cssnano": "^5.1.14",
"font-awesome": "^4.7.0",
"node-sass": "^7.0.3",
"npm-run-all": "^4.1.5",
"postcss-cli": "^10.1.0",
"s72-kibble": "^0.15.5"
}
}