-
- Downloads
Correctly removed counter feature and changed minimal-app to inventory-app,...
Correctly removed counter feature and changed minimal-app to inventory-app, however run lint is not working correctly and couldn't find a solution.
parent
2ebbef94
Branches
Tags
This commit is part of merge request !1. Comments created here will be created in the context of that merge request.
{ | ||
"name": "@unlsoft/starter-code", | ||
"version": "1.0.0", | ||
"description": "A project skeleton to be used as starter code for labs and homework.", | ||
"description": "A store/ordering based app that adds items into the users inventory.", | ||
"private": true, | ||
"license": "UNLICENSED", | ||
"scripts": { | ||
"postinstall:stylelint-config": "cd stylelint-config && npm install", | ||
"postinstall:eslint-config": "cd eslint-config && npm install", | ||
"postinstall:app": "cd minimal-app && npm install", | ||
"postinstall:app": "cd inventory-app && npm install", | ||
"postinstall": "run-s postinstall:**", | ||
"lint:app": "cd minimal-app && npm run lint", | ||
"lint:app": "cd inventory-app && npm run lint", | ||
"lint": "run-s --continue-on-error lint:**", | ||
"test-once:app": "cd minimal-app && npm run test-once", | ||
"test-once:app": "cd inventory-app && npm run test-once", | ||
"test-once": "run-s --continue-on-error test-once:**", | ||
"test": "run-s test-once", | ||
"start": "cd minimal-app && npm run start", | ||
"build:app": "cd minimal-app && npm run build", | ||
"start": "cd inventory-app && npm run start", | ||
"build:app": "cd inventory-app && npm run build", | ||
"build": "run-s build:**" | ||
}, | ||
"devDependencies": { | ||
... | ... | @@ -26,5 +26,8 @@ |
"ghooks": { | ||
"pre-commit": "npm run lint" | ||
} | ||
}, | ||
"dependencies": { | ||
"caniuse-lite": "^1.0.30001524" | ||
} | ||
} |
Please register or sign in to comment