multimodalart HF Staff commited on
Commit
5e5e84d
·
1 Parent(s): 13d6914

Create package.json

Browse files
Files changed (1) hide show
  1. package.json +17 -0
package.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "express-queue-app",
3
+ "version": "1.0.0",
4
+ "description": "Express.js app with a request queue",
5
+ "main": "app.js",
6
+ "scripts": {
7
+ "start": "node app.js"
8
+ },
9
+ "dependencies": {
10
+ "express": "^4.17.1",
11
+ "axios": "^0.21.1",
12
+ "p-queue": "^7.1.0",
13
+ "pm2": "^5.1.0"
14
+ },
15
+ "author": "Your Name",
16
+ "license": "ISC"
17
+ }