-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.08 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.08 KB
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
32
33
34
35
36
37
38
39
{
"name": "functions",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev-item": "ts-node-dev --respawn src/index-fn-item.ts",
"dev-auction": "ts-node-dev --respawn src/index-fn-auction.ts",
"dev-bazaar": "ts-node-dev --respawn src/index-fn-bazaar.ts",
"start-item": "node dist/index-fn-item.js",
"start-auction": "node dist/index-fn-auction.js",
"start-bazaar": "node dist/index-fn-bazaar.js",
"start": "while true; do sleep 30; done;"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"dotenv": "^17.0.1",
"express": "^5.1.0",
"express-validator": "^7.2.1",
"ioredis": "^5.6.1",
"mongodb-query-parser": "^4.4.2",
"mongoose": "^8.16.1",
"uuid": "^11.1.0",
"winston": "^3.17.0"
},
"devDependencies": {
"@types/connect": "^3.4.38",
"@types/express": "^5.0.3",
"@types/mongoose": "^5.11.97",
"@types/node": "^24.0.10",
"@types/uuid": "^10.0.0",
"@types/winston": "^2.4.4",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.3"
}
}