-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
executable file
·32 lines (32 loc) · 1.04 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": "kdocbuild",
"version": "0.1.0",
"author": "Nate Steiner <[email protected]> (http://natesteiner.com)",
"description": "SCSS build and PHP preview for kdoc Kirby theme",
"license": "MIT",
"private": false,
"main": "assets/scss/main.scss",
"repository": {
"type": "git",
"url": "https://github.com/nsteiner/kdoc.git"
},
"devDependencies": {
"autoprefixer": "^10.4.20",
"cssmin": "^0.4.3",
"node-sass": "^3.4.2",
"nodemon": "^3.1.7",
"opener": "^1.5.2",
"parallelshell": "^3.0.2",
"postcss-cli": "^11.0.0",
"rimraf": "^6.0.1"
},
"scripts": {
"clean": "rimraf assets/css/*",
"prebuild": "npm run clean -s",
"build": "node-sass assets/scss/main.scss | postcss --use autoprefixer -c postcss.json | cssmin > assets/css/main.css",
"watch": "nodemon -e scss -w assets/scss --exec npm run build",
"serve": "php -S localhost:8030",
"open:dev": "opener http://localhost:8030/",
"dev": "parallelshell \"npm run serve -s\" \"npm run watch -s\" \"npm run open:dev -s\""
}
}