-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.37 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "live-interactions",
"version": "1.0.0",
"main": "index.ts",
"license": "MIT",
"dependencies": {
"@fastify/cors": "8.4.0",
"@fastify/multipart": "8.0.0",
"@sparticuz/chromium": "^119.0.2",
"@supabase/supabase-js": "^2.45.0",
"cheerio": "^1.0.0-rc.12",
"dotenv": "16.3.1",
"fastify": "4.23.2",
"fastify-cron": "^1.3.1",
"fastify-firebase": "^1.0.3",
"fastify-plugin": "4.5.1",
"locate-chrome": "^0.1.1",
"moment-timezone": "^0.5.45",
"puppeteer": "^23.0.1",
"puppeteer-core": "^21.5.1",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"ts-node": "^10.9.1",
"twisted": "1.53.2",
"types": "^0.1.1",
"zod": "3.22.3"
},
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "tsx watch src/server.ts",
"vercel": "vercel dev",
"build": "tsc -p tsconfig.json",
"build-dev": "tsup src --out-dir build",
"start": "node build/server.js",
"postinstall": "npx puppeteer browsers install chrome",
"gcp-build": "node node_modules/puppeteer/install.mjs"
},
"devDependencies": {
"@rocketseat/eslint-config": "2.1.0",
"@types/node": "^20.8.2",
"eslint": "8.50.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-prettier": "5.0.0",
"prettier": "3.0.3",
"tsup": "7.2.0",
"tsx": "3.13.0",
"typescript": "5.2.2"
}
}