mirror of
https://github.com/vacp2p/vac.dev.git
synced 2026-01-08 06:13:57 -05:00
* Add new design * Use yarn instead of npm * Add 404 page style * Update "See VAC Openings" CTA * Change VAC to Vac * Change specs link * Keep post categories * Change code formatting * Update images * Update media links * Add media image default * Update package.json * Add twitter cards meta data * Add media section back * Remove images * Comment script for form * Change media urls to https * Import font locally * Add Anonymous font * Change inner page layout * Change pre code style * Add font preloading * Change post content styles * Add alt attribute * Change footer research links * Update gitignore * Add Fathom analytics * Update links * Change gif to video * Add work cards links back * Change footer spacing * Change logo size * Fix header * Centered section join * Make cards clickable * Align left section join * Remove graphic & video section about * Return logo size * Add post for Waku v1 vs Waku v2 bandwidth comparison (#43) * Add post for Waku v1 vs Waku v2 bandwidth comparison * Addressing PR comments * Added future work. Minor changes to intro. (cherry picked from commit007696cfc9) * Add <code> styles * Add Hanno page * Add opinion piece on ethics in surveillance tech (#44) * Add opinion piece on ethics in surveillance tech * Change published date. Added preface. * wrong date - today is 3rd (cherry picked from commitc64f5a889e) * Add circe page Co-authored-by: Hanno Cornelius <68783915+jm-clius@users.noreply.github.com> Co-authored-by: thecirce <95408261+thecirce@users.noreply.github.com> Co-authored-by: Hanno Cornelius <68783915+jm-clius@users.noreply.github.com> Co-authored-by: thecirce <95408261+thecirce@users.noreply.github.com>
34 lines
885 B
JSON
34 lines
885 B
JSON
{
|
|
"name": "vac.dev",
|
|
"version": "1.0.0",
|
|
"license": "Apache-2.0",
|
|
"main": "gulpfile.babel.js",
|
|
"devDependencies": {
|
|
"autoprefixer": "10.3.1",
|
|
"babel-preset-env": "1.7.0",
|
|
"babel-register": "6.26.0",
|
|
"browser-sync": "2.27.5",
|
|
"cross-env": "7.0.3",
|
|
"cross-spawn": "7.0.3",
|
|
"cssnano": "5.0.7",
|
|
"gulp": "4.0.2",
|
|
"gulp-imagemin": "^7.1.0",
|
|
"gulp-postcss": "9.0.0",
|
|
"postcss": "8.3.6",
|
|
"postcss-import": "14.0.2",
|
|
"tailwindcss": "^2.2.7"
|
|
},
|
|
"scripts": {
|
|
"build:production": "cross-env NODE_ENV=production gulp",
|
|
"build:dev": "cross-env NODE_ENV=development gulp",
|
|
"build": "yarn run build:production",
|
|
"dev": "cross-env NODE_ENV=development gulp serve",
|
|
"start": "yarn run dev",
|
|
"clean": "git clean -fdx",
|
|
"deploy": "node scripts/deploy.js"
|
|
},
|
|
"dependencies": {
|
|
"gh-pages": "^3.2.3"
|
|
}
|
|
}
|