Merge branch 'main' of https://git.csclub.uwaterloo.ca/www/www-new into feat/meet-the-team-page

This commit is contained in:
b38peng 2021-08-08 22:21:22 -03:00
commit 79eefba11a
4 changed files with 8450 additions and 44 deletions

View File

@ -1,30 +1,30 @@
---
kind: pipeline
type: docker
name: node14
name: node16
steps:
- name: install-deps
image: node:14
image: node:16
commands:
- npm install
- name: lint
image: node:14
image: node:16
depends_on:
- install-deps
commands:
- npm run lint
- name: build
image: node:14
image: node:16
depends_on:
- install-deps
commands:
- npm run build
- name: export
image: node:14
image: node:16
depends_on:
- build
commands:

8477
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,10 @@
{
"version": "0.1.0",
"private": true,
"engines": {
"node": ">14",
"npm": "^7"
},
"scripts": {
"dev": "next dev",
"build": "next build",

View File

@ -1,3 +1,4 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json"
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"dependencyDashboard": true
}