aboutsummaryrefslogtreecommitdiffstats
path: root/package.json
diff options
context:
space:
mode:
authorMatt Strapp <matt@mattstrapp.net>2022-02-18 13:20:17 -0600
committerMatt Strapp <matt@mattstrapp.net>2022-02-18 13:21:41 -0600
commitfe984bf0b098c94d8c7b21d2312db47b79c233c7 (patch)
treeddecf29b39b086bd095e4ca64d37cdc91f888eb9 /package.json
parentAdd README to file map (diff)
downloadee4511w-web-fe984bf0b098c94d8c7b21d2312db47b79c233c7.tar
ee4511w-web-fe984bf0b098c94d8c7b21d2312db47b79c233c7.tar.gz
ee4511w-web-fe984bf0b098c94d8c7b21d2312db47b79c233c7.tar.bz2
ee4511w-web-fe984bf0b098c94d8c7b21d2312db47b79c233c7.tar.lz
ee4511w-web-fe984bf0b098c94d8c7b21d2312db47b79c233c7.tar.xz
ee4511w-web-fe984bf0b098c94d8c7b21d2312db47b79c233c7.tar.zst
ee4511w-web-fe984bf0b098c94d8c7b21d2312db47b79c233c7.zip
Lint
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
Diffstat (limited to 'package.json')
-rw-r--r--package.json3
1 files changed, 2 insertions, 1 deletions
diff --git a/package.json b/package.json
index cc47a13..e6fffc8 100644
--- a/package.json
+++ b/package.json
@@ -29,13 +29,14 @@
},
"scripts": {
"build": "npm-run-all clean tsc copy-views",
- "build:ci": "npm-run-all clean tsc",
+ "build:ci": "npm-run-all clean lint tsc",
"build:pack": "npm-run-all build pack",
"copy-views": "cp -r ./src/views ./dist/views && cp -r ./src/public ./dist/public",
"clean": "rm -rf dist",
"dev": "nodemon --watch ./src -e ts,ejs,css,js --exec yarn dev:start",
"dev:start": "npm-run-all build start",
"lint": "eslint --ext .ts,.js ./src --fix",
+ "lint:ci": "eslint --ext .ts,.js ./src",
"pack": "pkg . -t node16-linux -o pend-server",
"start": "node dist/index.js",
"tsc": "tsc --project ./tsconfig.json"