-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.07 KB
/
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
35
36
37
38
39
40
41
{
"name": "desafio-tecnico-turma-xp-trybe",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"lint": "eslint .",
"test": "mocha ./src/tests/**/*$NAME*.test.js --exit",
"restore": "node ./tests/restoreDb.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/viniciusOP/desafio-tecnico-turma-xp-trybe.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/viniciusOP/desafio-tecnico-turma-xp-trybe/issues"
},
"homepage": "https://github.com/viniciusOP/desafio-tecnico-turma-xp-trybe#readme",
"dependencies": {
"body-parser": "^1.20.0",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"mysql": "^2.18.1",
"mysql-import": "^5.0.21",
"mysql2": "^2.3.3"
},
"devDependencies": {
"chai": "^4.3.6",
"eslint": "^8.19.0",
"eslint-config-trybe-backend": "^1.0.4",
"eslint-plugin-sonarjs": "^0.13.0",
"mocha": "^10.0.0",
"nodemon": "^2.0.19",
"sinon": "^14.0.0"
}
}