-
- Downloads
Initial commit.
parents
No related branches found
No related tags found
Showing
- divide-and-conquer/src/serviceWorkerRegistration.js 140 additions, 0 deletionsdivide-and-conquer/src/serviceWorkerRegistration.js
- eslint-config 1 addition, 0 deletionseslint-config
- package-lock.json 0 additions, 0 deletionspackage-lock.json
- package.json 30 additions, 0 deletionspackage.json
- stylelint-config 1 addition, 0 deletionsstylelint-config
package-lock.json
0 → 100644
This diff is collapsed.
package.json
0 → 100644
{ | ||
"name": "@unlsoft/divide-and-conquer-in-class", | ||
"version": "1.0.0", | ||
"description": "Starter code for the class on dynamic programming.", | ||
"private": true, | ||
"license": "UNLICENSED", | ||
"scripts": { | ||
"postinstall:stylelint-config": "cd stylelint-config && npm install", | ||
"postinstall:eslint-config": "cd eslint-config && npm install", | ||
"postinstall:app": "cd divide-and-conquer && npm install", | ||
"postinstall": "run-s postinstall:**", | ||
"lint:app": "cd divide-and-conquer && npm run lint", | ||
"lint": "run-s --continue-on-error lint:**", | ||
"test-once:app": "cd divide-and-conquer && npm run test-once", | ||
"test-once": "run-s --continue-on-error test-once:**", | ||
"test": "run-s test-once", | ||
"start": "cd divide-and-conquer && npm run start", | ||
"build:app": "cd divide-and-conquer && npm run build", | ||
"build": "run-s build:**" | ||
}, | ||
"devDependencies": { | ||
"ghooks": "^2.0.4", | ||
"npm-run-all": "^4.1.5" | ||
}, | ||
"config": { | ||
"ghooks": { | ||
"pre-commit": "npm run lint" | ||
} | ||
} | ||
} |
Please register or sign in to comment