-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.93 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.93 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
41
42
43
44
45
46
47
48
{
"name": "casecomp",
"version": "1.4.0",
"description": "Pokemon TCG card research — live listings from eBay, magi.camp, Yahoo Auctions & SNKRDUNK with AI pre-grading and PSA signals",
"type": "module",
"engines": {
"node": ">=24"
},
"scripts": {
"start": "node index.js",
"api": "node api.js",
"test": "sh scripts/test.sh",
"test:unit": "node test/unit-test.js",
"test:api": "node test/api-test.js",
"test:live": "API_URL=https://api.casecomp.xyz node test/api-test.js",
"test:api:local": "bash scripts/test-api-local.sh",
"test:coverage": "npx c8 --exclude=test/** --exclude=node_modules/** --exclude=public/** --exclude=extension/** --reporter=text --reporter=text-summary node test/unit-test.js",
"test:smoke": "node test/smoke-test.js",
"scan": "node scan.js",
"psa": "node scripts/psa-report.js",
"deploy": "gcloud builds submit --config=cloudbuild.yml --project casecomp-495718 && gcloud run deploy casecomp-api --image us-docker.pkg.dev/casecomp-495718/casecomp-api/app --region asia-south1 --project casecomp-495718 --port 3000 --allow-unauthenticated",
"playwright-install": "npx playwright install chromium"
},
"dependencies": {
"@google-cloud/firestore": "^8.6.0",
"@google-cloud/storage": "^7.19.0",
"axios": "^1.16.1",
"axios-cookiejar-support": "^7.0.0",
"cheerio": "^1.0.0",
"compression": "^1.8.1",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"express-rate-limit": "^8.5.2",
"helmet": "^8.1.0",
"ioredis": "^5.10.1",
"minimist": "^1.2.8",
"playwright": "^1.59.1",
"resend": "^6.12.3",
"sharp": "^0.34.5",
"swagger-ui-express": "^5.0.1",
"tough-cookie": "^5.1.2"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
"devDependencies": {
"c8": "^11.0.0",
"lockfile-lint": "^5.0.0"
}
}