diff --git a/package.json b/package.json index 36df922..25ed5f2 100644 --- a/package.json +++ b/package.json @@ -9,22 +9,22 @@ "author": "Bowden Kelly", "license": "MIT", "scripts": { - "start": "npm run serve", "build": "npm run build-sass && npm run build-ts && npm run lint && npm run copy-static-assets", - "serve": "node dist/server.js", - "watch-node": "nodemon dist/server.js", - "watch": "concurrently -k -p \"[{name}]\" -n \"Sass,TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-sass\" \"npm run watch-ts\" \"npm run watch-node\"", - "test": "jest --forceExit --coverage --verbose", - "watch-test": "npm run test -- --watchAll", - "build-ts": "tsc", - "watch-ts": "tsc -w", "build-sass": "node-sass src/public/css/main.scss dist/public/css/main.css", - "watch-sass": "node-sass -w src/public/css/main.scss dist/public/css/main.css", - "lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix", + "build-ts": "tsc", "copy-static-assets": "ts-node copyStaticAssets.ts", "debug": "npm run build && npm run watch-debug", + "lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix", + "serve": "node dist/server.js", "serve-debug": "nodemon --inspect dist/server.js", - "watch-debug": "concurrently -k -p \"[{name}]\" -n \"Sass,TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-sass\" \"npm run watch-ts\" \"npm run serve-debug\"" + "start": "npm run serve", + "test": "jest --forceExit --coverage --verbose", + "watch": "concurrently -k -p \"[{name}]\" -n \"Sass,TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-sass\" \"npm run watch-ts\" \"npm run watch-node\"", + "watch-debug": "concurrently -k -p \"[{name}]\" -n \"Sass,TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-sass\" \"npm run watch-ts\" \"npm run serve-debug\"", + "watch-node": "nodemon dist/server.js", + "watch-sass": "node-sass -w src/public/css/main.scss dist/public/css/main.css", + "watch-test": "npm run test -- --watchAll", + "watch-ts": "tsc -w" }, "dependencies": { "async": "^3.1.0",