-
- Downloads
Initial commit.
parents
No related branches found
No related tags found
Showing
- greedy-algorithms/src/features/fueling/solution.module.css 7 additions, 0 deletionsgreedy-algorithms/src/features/fueling/solution.module.css
- greedy-algorithms/src/features/fueling/solver.js 13 additions, 0 deletionsgreedy-algorithms/src/features/fueling/solver.js
- greedy-algorithms/src/index.css 41 additions, 0 deletionsgreedy-algorithms/src/index.css
- greedy-algorithms/src/index.js 23 additions, 0 deletionsgreedy-algorithms/src/index.js
- greedy-algorithms/src/service-worker.js 75 additions, 0 deletionsgreedy-algorithms/src/service-worker.js
- greedy-algorithms/src/serviceWorkerRegistration.js 140 additions, 0 deletionsgreedy-algorithms/src/serviceWorkerRegistration.js
- package-lock.json 0 additions, 0 deletionspackage-lock.json
- package.json 30 additions, 0 deletionspackage.json
- stylelint-config 1 addition, 0 deletionsstylelint-config
greedy-algorithms/src/index.css
0 → 100644
greedy-algorithms/src/index.js
0 → 100644
greedy-algorithms/src/service-worker.js
0 → 100644
package-lock.json
0 → 100644
This diff is collapsed.
package.json
0 → 100644
{ | |||
"name": "@unlsoft/greedy-algorithms-in-class", | |||
"version": "1.0.0", | |||
"description": "Starter code for the class on greedy algorithms.", | |||
"private": true, | |||
"license": "UNLICENSED", | |||
"scripts": { | |||
"postinstall:stylelint-config": "cd stylelint-config && npm install", | |||
"postinstall:eslint-config": "cd eslint-config && npm install", | |||
"postinstall:app": "cd greedy-algorithms && npm install", | |||
"postinstall": "run-s postinstall:**", | |||
"lint:app": "cd greedy-algorithms && npm run lint", | |||
"lint": "run-s --continue-on-error lint:**", | |||
"test-once:app": "cd greedy-algorithms && npm run test-once", | |||
"test-once": "run-s --continue-on-error test-once:**", | |||
"test": "run-s test-once", | |||
"start": "cd greedy-algorithms && npm run start", | |||
"build:app": "cd greedy-algorithms && 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