-
- Downloads
Update 43 files
- /algorithm-explorer/public/index.html - /algorithm-explorer/public/logo.png - /algorithm-explorer/public/logo.svg - /algorithm-explorer/public/manifest.json - /algorithm-explorer/src/components/AlgorithmSelection.css - /algorithm-explorer/src/components/AlgorithmSelection.jsx - /algorithm-explorer/src/components/BFS.jsx - /algorithm-explorer/src/components/DAC.jsx - /algorithm-explorer/src/components/DFS.jsx - /algorithm-explorer/src/components/Dijkstra.jsx - /algorithm-explorer/src/components/GreedyAlgorithm.jsx - /algorithm-explorer/src/components/LandingPage.css - /algorithm-explorer/src/components/LandingPage.jsx - /algorithm-explorer/src/app.js - /algorithm-explorer/src/index.css - /algorithm-explorer/src/index.js - /algorithm-explorer/src/store.js - /algorithm-explorer/.gitignore - /algorithm-explorer/package-lock.json - /algorithm-explorer/package.json - /react-redux-starter-code.code-workspace - /package.json - /package-lock.json - /.gitmodules - /.gitignore - /.gitattributes - /author_message_screen.py - /bfs_exercise1.py - /bfs_exercise2.py - /bfs_screen.py - /dac_exercise.py - /dac_screen.py - /dfs_exercise1.py - /dfs_exercise2.py - /dfs_screen.py - /dijkstra_exercise1.py - /dijkstra_exercise2.py - /dijkstra_screen.py - /greedy_exercise1.py - /greedy_exercise2.py - /greedy_screen.py - /logo.png - /main.py
package.json
deleted
100644 → 0
{ | |||
"name": "@unlsoft/starter-code", | |||
"version": "1.0.0", | |||
"description": "A project skeleton to be used as starter code for labs and homework.", | |||
"private": true, | |||
"license": "UNLICENSED", | |||
"scripts": { | |||
"postinstall:stylelint-config": "cd stylelint-config && npm install", | |||
"postinstall:eslint-config": "cd eslint-config && npm install", | |||
"postinstall:app": "cd algorithm-explorer && npm install", | |||
"postinstall": "run-s postinstall:**", | |||
"lint:app": "cd algorithm-explorer && npm run lint", | |||
"lint": "run-s --continue-on-error lint:**", | |||
"test-once:app": "cd algorithm-explorer && npm run test-once", | |||
"test-once": "run-s --continue-on-error test-once:**", | |||
"test": "run-s test-once", | |||
"start": "cd algorithm-explorer && npm run start", | |||
"build:app": "cd algorithm-explorer && 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