-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.27 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.27 KB
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
{
"name": "sems-website",
"homepage": "https://sems.dev",
"version": "1.0.0",
"description": "Simple website for myself.",
"scripts": {
"generate-favicon": "node ./node-scripts/generate-favicon.js",
"sass": "sass src/styles.sass:src/styles.css --style=compressed && postcss src/styles.css --use autoprefixer -o src/styles.css",
"sass:watch": "sass --watch src/styles.sass:src/styles.css && postcss src/styles.css --use autoprefixer -o src/styles.css",
"copy-files": "copyfiles -u 1 src/CNAME src/robots.txt src/**/*.html src/styles.css src/resources/**/* build",
"clean-site": "rimraf build",
"build": "npm run clean-site && npm run sass && npm run generate-favicon && npm run copy-files",
"start": "browser-sync start --config ./node-scripts/bs-config.js",
"dev": "npm-run-all --parallel start sass:watch",
"deploy": "npm run build && gh-pages -d build"
},
"author": "Sem Spanhaak",
"license": "MIT",
"dependencies": {
"browser-sync": "^3.0.3",
"sass": "^1.68.0",
"sharp": "^0.33.5",
"sharp-ico": "^0.1.5"
},
"devDependencies": {
"autoprefixer": "^10.4.20",
"copyfiles": "^2.4.1",
"gh-pages": "^6.3.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.5.1",
"postcss-cli": "^11.0.0",
"rimraf": "^3.0.2"
}
}