CherryKitten
70cee77a95
Currently contains the Unit Tests, which should already be done correctly. Functional tests still need to be added.
25 lines
647 B
JSON
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"
|
|
}
|