Spaces:
Running
Running
Ahmad Schinner
commited on
Create package.json
Browse files- 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 |
+
}
|