-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 935 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 935 Bytes
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
{
"name": "dos_project",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start:frontend": "node frontEndServer.js",
"start:catalog1": "set PORT=3001 && node catalog/server.js",
"start:catalog2": "set PORT=3003 && node catalog2/server.js",
"start:order1": "set PORT=3002 && node order/server.js",
"start:order2": "set PORT=3004 && node order2/server.js",
"start:all": "npm-run-all --parallel start:frontend start:catalog1 start:catalog2 start:order1 start:order2"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"axios": "^1.7.7",
"body-parser": "^1.20.3",
"express": "^4.21.1",
"node-cache": "^5.1.2",
"sequelize": "^6.37.4",
"sqlite3": "^5.1.7",
"swagger-autogen": "^2.23.7",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"npm-run-all": "^4.1.5"
}
}