-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.11 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.11 KB
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
42
43
44
45
46
47
48
49
50
51
{
"name": "toolbox-fullstack-test-api",
"version": "1.0.0",
"description": "Backend para el Test de Full Stack en Toolbox.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "standard --fix && mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/braianstaimer/toolbox-fullstack-test-api.git"
},
"keywords": [
"api",
"backend",
"toolbox"
],
"author": "Braian Staimer",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.0",
"helmet": "^3.21.2",
"md5": "^2.2.1",
"moment": "^2.24.0",
"swagger-jsdoc": "^3.5.0",
"swagger-ui-express": "^4.1.3",
"tedious": "^8.0.1"
},
"devDependencies": {
"babel-jest": "^25.1.0",
"babel-preset-es2020": "^1.0.2",
"babel-preset-stage-2": "^6.24.1",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint-config-google": "^0.14.0",
"mocha": "^8.2.1",
"standard": "^16.0.3",
"supertest": "^6.0.1"
},
"jest": {
"collectCoverageFrom": []
},
"standard": {
"env": [
"mocha"
]
}
}