-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.32 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
38
39
40
41
42
43
44
{
"name": "kita",
"version": "1.0.0",
"description": "Static site starter kit",
"main": "index.js",
"repository": {
"url": "github.com/corygibbons/kita",
"type": "git"
},
"author": "Cory Gibbons",
"license": "MIT",
"scripts": {
"start": "run-p server watch:*",
"server": "browser-sync start --server --port 2000 --files dist/ --ss dist/",
"build": "run-p build:*",
"build:html": "pug -O src/data/index.js src/pug/*.pug --out dist",
"build:css": "postcss src/css/index.css -o dist/css/style.css",
"build:js": "webpack -p",
"watch:html": "pug -O src/data/index.js src/pug/*.pug --out dist -w -P",
"watch:css": "postcss src/css/index.css -o dist/css/style.css -w",
"watch:data": "onchange 'src/data/**/*.js' -- npm run build:html",
"watch:js": "webpack -w"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"browser-sync": "^2.17.3",
"normalize.css": "^7.0.0",
"npm-run-all": "^4.0.2",
"onchange": "^3.2.1",
"postcss-cli": "^4.1.0",
"postcss-cssnext": "^3.0.2",
"postcss-easy-import": "^2.1.0",
"postcss-nested": "^2.1.2",
"postcss-simple-vars": "^4.1.0",
"pug-cli": "^1.0.0-alpha6",
"sugarss": "^1.0.0",
"webpack": "^3.5.5"
},
"babel": {
"presets": ["env"]
}
}