-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.23 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.23 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
{
"name": "ruokascraper-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"export": "next export"
},
"dependencies": {
"@types/puppeteer": "^7.0.4",
"chrome-aws-lambda": "^10.1.0",
"firebase": "^10.12.3",
"next": "14.2.4",
"next-transpile-modules": "^10.0.1",
"puppeteer": "^22.12.0",
"puppeteer-core": "^10.1.0",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-anonymize-ua": "^2.4.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"puppeteer-extra-plugin-user-preferences": "^2.4.1",
"react": "^18.3.1",
"react-dom": "^18",
"react-icons": "^5.2.1",
"vercel": "^34.2.7"
},
"devDependencies": {
"@playwright/test": "^1.45.1",
"@types/node": "^20",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"eslint": "^8",
"eslint-config-next": "14.2.4",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5.5.2"
},
"pkg": {
"scripts": [
"node_modules/puppeteer/lib/*.js",
"node_modules/puppeteer-extra-plugin-stealth/**/*.js"
],
"assets": "node_modules/puppeteer-extra-plugin-stealth/**/*.*"
}
}