-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
22 lines (22 loc) · 844 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "portfolio",
"version": "1.0.0",
"description": "```mermaid\r graph TD;\r A[NodeJS my-portfolio-website] --> B[server.js]\r A --> C[package.json]\r A --> D[public/]\r D --> E[index.html]\r D --> F[css/]\r F --> G[styles.css]\r D --> H[js/]\r H --> I[script.js]\r A --> J[views/]\r J --> K[home.ejs]\r A --> L[db/]\r L --> M[db.js]\r ```",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "concurrently \"node server.js\" \"py carbitrage_dashboard/carbitrage_api_processing.py\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.21.1",
"node-fetch": "^3.3.2",
"sqlite3": "^5.1.7"
},
"type": "module",
"devDependencies": {
"concurrently": "^9.1.0"
}
}