-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
28 lines (28 loc) · 850 Bytes
/
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
{
"name": "soba",
"version": "1.0.0",
"description": "Starter theme for Kirby",
"author": "Cory Gibbons",
"repository": {
"type": "git",
"url": "github.com/corygibbons/soba"
},
"scripts": {
"start": "npm-run-all --parallel php browsersync watch:css",
"watch": "npm-run-all --parallel browsersync watch:css",
"build:css": "postcss src/css/index.css -o assets/css/style.css",
"watch:css": "npm run build:css -- -w",
"browsersync": "browser-sync start --config browsersync.config.js",
"php": "php -S 127.0.0.1:1234"
},
"devDependencies": {
"browser-sync": "^2.18.13",
"normalize.css": "^7.0.0",
"npm-run-all": "^4.1.1",
"postcss-cli": "^4.1.0",
"postcss-cssnext": "^3.0.2",
"postcss-easy-import": "^2.1.0",
"postcss-scss": "^1.0.2",
"postcss-simple-vars": "^4.1.0"
}
}