This repository has been archived on 2023-11-10. You can view files and clone it, but cannot push or open issues or pull requests.
freecodecamp-projects/7-quality-assurance/4-sudoku-solver/package.json
CherryKitten 70cee77a95
Add (WIP) Sudoku Solver
Currently contains the Unit Tests, which should already be done correctly.

Functional tests still need to be added.
2022-11-09 22:06:14 +01:00

25 lines
647 B
JSON

{
"name": "sudoku-solver",
"version": "2.0.0",
"description": "Quality Assurance 4: Sudoku Solver",
"main": "server.js",
"scripts": {
"start": "nodemon server.js",
"test": "mocha --timeout 5000 --require @babel/register --recursive --exit --ui tdd tests/"
},
"dependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/register": "^7.11.5",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsdom": "^16.4.0",
"mocha": "^8.1.3",
"nodemon": "^2.0.4"
},
"license": "MIT"
}