-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.21 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
44
45
{
"name": "product_service",
"version": "1.0.0",
"description": "Product microservice",
"main": "server/server.js",
"scripts": {
"server-dev": "npx nodemon --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SDC-Team-4-Cool-Ranch/product_service.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/SDC-Team-4-Cool-Ranch/product_service/issues"
},
"homepage": "https://github.com/SDC-Team-4-Cool-Ranch/product_service#readme",
"dependencies": {
"axios": "^1.3.3",
"csv-parser": "^3.0.0",
"csv-writer": "^1.6.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"fs": "^0.0.1-security",
"ioredis": "^5.3.1",
"morgan": "^1.10.0",
"nodemon": "^2.0.20",
"pg": "^8.9.0",
"stream": "^0.0.2",
"winston": "^3.8.2"
},
"devDependencies": {
"eslint": "^8.34.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.4.1"
}
}