Ahmad Schinner commited on
Commit
f249559
·
verified ·
1 Parent(s): 71ea33c

Create package.json

Browse files
Files changed (1) hide show
  1. package.json +14 -0
package.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "my-express-app",
3
+ "version": "1.0.0",
4
+ "description": "A Node.js application using Express, Axios, and Cheerio",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "start": "node index.js"
8
+ },
9
+ "dependencies": {
10
+ "axios": "^1.5.0",
11
+ "cheerio": "^1.2.0",
12
+ "express": "^4.18.2"
13
+ }
14
+ }