-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.05 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
42
43
{
"name": "stock-service",
"version": "1.0.0",
"author": "Esteban De la Rosa <[email protected]>",
"main": "index.js",
"engines": {
"node": ">=16"
},
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"pretest": "npm run lint",
"test": "jest --verbose",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint . --cache --fix"
},
"dependencies": {
"axios": "^0.21.1",
"cors": "^2.8.5",
"csv-parse": "^4.16.0",
"express": "^4.17.1",
"express-async-handler": "^1.1.4",
"helmet": "^4.6.0",
"http-errors": "^1.8.0",
"js-yaml": "^4.1.0",
"morgan": "^1.10.0",
"swagger-ui-express": "^4.1.6",
"yup": "^0.32.9"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.6",
"msw": "^0.34.0",
"nodemon": "^2.0.12",
"prettier": "2.3.2",
"supertest": "^6.1.3"
}
}