Skip to content

Commit

Permalink
feat(ci): setup linters (#128)
Browse files Browse the repository at this point in the history
  • Loading branch information
DerekRoberts authored Apr 22, 2024
1 parent 39adedb commit 22d0968
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,16 @@
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite --host",
"clean": "rimraf ./node_modules/.vite",
"build": "vite build",
"build:analyze": "vite build --mode analyze",
"build:clean": "rimraf dist",
"clean": "rimraf ./node_modules/.vite",
"dev": "vite --host",
"lint": "eslint --ext .ts,.tsx .",
"lint:fix": "npm run lint -- --fix",
"preview": "vite preview",
"test:unit": "vitest --mode test",
"test:cov": "vitest run --mode test --coverage",
"build": "vite build"
"test:cov": "vitest run --mode test --coverage"
},
"dependencies": {
"@bcgov/bc-sans": "^2.1.0",
Expand Down

0 comments on commit 22d0968

Please sign in to comment.