-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.65 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
{
"name": "personal-site",
"version": "0.1.0",
"homepage": "https://brianchesko.github.io",
"description": "Simple recipes for building and compiling with the CLI.",
"author": {
"name": "Brian Chesko",
"url": "https://brianchesko.github.io"
},
"license": "MIT",
"scripts": {
"clean": "recursive-delete dist",
"js": "rollup --config",
"css": "node sass.js",
"copy": "recursive-copy src/copy dist",
"svg": "recursive-copy src/svg dist/svg",
"img": "recursive-copy src/img dist/img",
"mkdist": "mkdir dist",
"build-dirty": "npm-run-all -p js css copy img svg",
"build": "npm-run-all -s clean mkdist build-dirty",
"watch-css": "chokidar \"./src/**/*.scss\" -c \"npm run css\"",
"watch-js": "chokidar \"./src/**/*.js\" -c \"npm run js\"",
"watch-img": "chokidar \"./src/img/**/*.*\" -c \"npm run img\"",
"watch-svg": "chokidar \"./src/svg/**/*.*\" -c \"npm run svg\"",
"watch-copy": "chokidar \"./src/copy/**/*.*\" -c \"npm run copy\"",
"watch": "npm-run-all -p build watch-css watch-js watch-img watch-svg watch-copy",
"server-start": "browser-sync start --files \"dist\" --server \"dist\"",
"server": "npm-run-all -p watch server-start",
"deploy-current": ".\\deploy.sh",
"deploy": "npm-run-all -s build deploy-current"
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"recursive-fs": "^2.1.0",
"rollup": "^2.6.1",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.26.5",
"chokidar-cli": "^2.1.0",
"browser-sync": "^2.26.14"
}
}