-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.94 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
45
46
{
"name": "bulma-start-muncie",
"version": "1.0.0",
"description": "Kevin Muncie's start package for Bulma",
"keywords": [
"sass",
"bulma",
"css",
"start",
"scaffold"
],
"author": "Kevin Muncie (https://kmuncie.com)",
"license": "MIT",
"browserslist": [
"defaults"
],
"scripts": {
"develop": "npm run build && concurrently -p \"[{name}]\" -n \"HTTP,HTML,SCSS,JS,IMG\" -c \"bgBlue.bold,bgMagenta.bold,bgGreen.bold,bgRed.bold,bgYellow.bold\" \"npm run http-server\" \"npm run html:watch\" \"npm run scss:watch\" \"npm run js:watch\" \"npm run img:watch\" \"npm run assets:watch\"",
"http-server": "http-server -c0 dist",
"clean": "rm -rf dist/**/*",
"html:copy": "ncp src/html/ dist/",
"html:watch": "chokidar src/html -c 'npm run html:copy'",
"scss:compile": "sass src/scss:dist/css",
"postcss": "postcss dist/css/collector.css -r -m --config postcss.config.js",
"scss:watch": "chokidar src/scss -c 'npm run scss:compile && npm run postcss'",
"js:copy": "ncp src/js/ dist/js",
"js:watch": "chokidar src/js -c 'npm run js:copy'",
"img:copy": "ncp src/img/ dist/img",
"img:watch": "chokidar src/img -c 'npm run img:copy'",
"assets:copy": "ncp src/assets/ dist/assets",
"assets:watch": "chokidar src/assets -c 'npm run assets:copy'",
"build": "npm run clean && npm run html:copy && npm run js:copy && npm run img:copy && npm run assets:copy && npm run scss:compile && npm run postcss"
},
"devDependencies": {
"@silvermine/postcss-css-var-fallback": "git+https://[email protected]/silvermine/postcss-css-var-fallback#a26ef98a85ee857a4756d64cf673919093ac3ed6",
"autoprefixer": "^10.4.0",
"chokidar-cli": "^3.0.0",
"concurrently": "^6.4.0",
"http-server": "^14.0.0",
"ncp": "2.0.0",
"sass": "^1.45.1",
"postcss": "^8.3.11",
"postcss-cli": "^9.0.2",
"bulma": "^0.9.3"
}
}