-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.17 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.17 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
40
{
"name": "app",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"start": "tsc && functions-framework --target=api",
"gcp-build": "npm run build",
"deploy": "gcloud functions deploy api --gen2 --runtime=nodejs20 --region=us-central1 --source=. --entry-point=api --trigger-http --allow-unauthenticated",
"generate-schema": "node generate-schema.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WayneAl/SlushAPI.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/WayneAl/SlushAPI/issues"
},
"homepage": "https://github.com/WayneAl/SlushAPI#readme",
"dependencies": {
"@google-cloud/functions-framework": "^4.0.0",
"@typus/typus-perp-sdk": "^1.1.22",
"express": "^5.1.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/node": "^24.5.2",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"typescript": "^5.9.2"
}
}