forked from freeCodeCamp/boilerplate-project-sudoku-solver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 978 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "sudoku-solver",
"version": "2.0.0",
"description": "Quality Assurance 4: Sudoku Solver",
"main": "index.js",
"scripts": {
"dev": "export $(cat .env | xargs) && npx nodemon server.js",
"test": "export $(cat .env | xargs) && npx mocha --timeout 5000 --require @babel/register --recursive --exit --ui tdd tests/",
"start": "node server.js",
"lint": "eslint ."
},
"dependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/register": "^7.12.10",
"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",
"devDependencies": {
"eslint": "^7.16.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1"
}
}