-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 965 Bytes
/
package.json
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
{
"name": "profits-api",
"scripts": {
"start": "tsc -p tsconfig.json && node dist/api.js",
"populate-cache": "tsc -p tsconfig.json && node dist/populate-cache.js",
"update-cache": "tsc -p tsconfig.json && node dist/update-cache.js",
"updater:start": "tsc -p tsconfig.json && node dist/updaters.js",
"deploy": "gcloud builds submit --tag gcr.io/ffxivteamcraft/profits-api && gcloud beta run deploy profits-api --image gcr.io/ffxivteamcraft/profits-api --region us-central1"
},
"engines": {
"node": "20"
},
"main": "dist/updaters.js",
"dependencies": {
"axios": "^0.24.0",
"axios-retry": "^3.2.4",
"cors": "^2.8.5",
"date-fns": "^2.29.1",
"express": "^4.17.2",
"lodash": "^4.17.21",
"redis": "^4.0.1",
"rxjs": "^7.5.1"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/lodash": "^4.14.178",
"@types/node": "^17.0.7",
"typescript": "^4.5.4"
},
"private": true
}