-
- Downloads
Initial commit.
parents
No related branches found
No related tags found
Showing
- .gitattributes 2 additions, 0 deletions.gitattributes
- .gitignore 23 additions, 0 deletions.gitignore
- .gitmodules 6 additions, 0 deletions.gitmodules
- README.md 25 additions, 0 deletionsREADME.md
- ascent.code-workspace 15 additions, 0 deletionsascent.code-workspace
- ascent/.gitignore 23 additions, 0 deletionsascent/.gitignore
- ascent/package-lock.json 0 additions, 0 deletionsascent/package-lock.json
- ascent/package.json 80 additions, 0 deletionsascent/package.json
- ascent/public/index.html 24 additions, 0 deletionsascent/public/index.html
- ascent/public/logo.png 0 additions, 0 deletionsascent/public/logo.png
- ascent/public/logo.svg 5 additions, 0 deletionsascent/public/logo.svg
- ascent/public/manifest.json 24 additions, 0 deletionsascent/public/manifest.json
- ascent/src/app.js 16 additions, 0 deletionsascent/src/app.js
- ascent/src/features/ascent/ascent.js 33 additions, 0 deletionsascent/src/features/ascent/ascent.js
- ascent/src/features/ascent/sortingByDeletion.js 3 additions, 0 deletionsascent/src/features/ascent/sortingByDeletion.js
- ascent/src/index.css 41 additions, 0 deletionsascent/src/index.css
- ascent/src/index.js 17 additions, 0 deletionsascent/src/index.js
- eslint-config 1 addition, 0 deletionseslint-config
- package-lock.json 0 additions, 0 deletionspackage-lock.json
- package.json 30 additions, 0 deletionspackage.json
.gitattributes
0 → 100644
.gitignore
0 → 100644
.gitmodules
0 → 100644
README.md
0 → 100644
ascent.code-workspace
0 → 100644
ascent/.gitignore
0 → 100644
ascent/package-lock.json
0 → 100644
This diff is collapsed.
ascent/package.json
0 → 100644
ascent/public/index.html
0 → 100644
ascent/public/logo.png
0 → 100755
9.58 KiB
ascent/public/logo.svg
0 → 100644
ascent/public/manifest.json
0 → 100644
ascent/src/app.js
0 → 100644
ascent/src/features/ascent/ascent.js
0 → 100644
ascent/src/index.css
0 → 100644
ascent/src/index.js
0 → 100644
package-lock.json
0 → 100644
This diff is collapsed.
package.json
0 → 100644
{ | ||
"name": "@unlsoft/dynamic-programming-practice", | ||
"version": "1.0.0", | ||
"description": "Starter code for additional in-class practice with 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 ascent && npm install", | ||
"postinstall": "run-s postinstall:**", | ||
"lint:app": "cd ascent && npm run lint", | ||
"lint": "run-s --continue-on-error lint:**", | ||
"test-once:app": "cd ascent && npm run test-once", | ||
"test-once": "run-s --continue-on-error test-once:**", | ||
"test": "run-s test-once", | ||
"start": "cd ascent && npm run start", | ||
"build:app": "cd ascent && 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" | ||
} | ||
} | ||
} |