forked from commit-conf/techshessions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.23 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.23 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
35
36
37
{
"name": "techshessions",
"version": "0.0.1",
"description": "The contents of techshessions.com",
"repository": {
"type": "git",
"url": "git+https://github.com/ccoloma/techshessions.git"
},
"authors": [
"Carlos Coloma <ccescribano@gmail.com>",
"Nacho Coloma <icoloma@gmail.com>"
],
"license": "Apache-2.0",
"devDependencies": {
"@actions/core": "^1.10.0",
"autoprefixer": "^10.4.14",
"concurrently": "^8.2.1",
"node-sass": "^9.0.0",
"postcss-cli": "^10.1.0",
"svgo": "^3.0.2"
},
"scripts": {
"compile:css": "node-sass src/scss/main.scss --output-style compressed | postcss -o static/css/main.css",
"test": "npm build && concurrently --kill-others --success first \"hugo server\" \"blc http://localhost:1313 -ro\"",
"postversion": "git push && git push --tags",
"watch:css": "npm run compile:css && inotifywait -m -r -e modify,create,delete ./src/scss/ | while read NEWFILE; do npm run compile:css; done",
"watch": "concurrently \"npm run watch:css\" \"hugo server --bind=0.0.0.0\" \"xdg-open http://localhost:1313/\"",
"build": "npm run compile:css && hugo"
},
"browserslist": [
"last 2 version",
"not dead"
],
"dependencies": {
"sharp": "^0.32.5"
}
}