-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
49 lines (49 loc) · 1.33 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
{
"name": "nextjs-scraper-playground",
"title": "Next.js Web Scraper Playground",
"version": "0.1.0",
"description": "Build and test your own web scraper APIs with Next.js and cheerio.",
"repository": {
"type": "git",
"url": "https://github.com/johnpolacek/nextjs-scraper-playground.git"
},
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"format-watch": "npm run format && onchange \"**/*.{js,jsx,json,md}\" -- prettier --write {{changed}}",
"test": "cypress run",
"cypress": "cypress open",
"deploy": "npm run test && git push origin main"
},
"dependencies": {
"cheerio": "^1.0.0-rc.9",
"chrome-aws-lambda": "^9.1.0",
"next": "^10.2.0",
"puppeteer": "^9.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-syntax-highlighter": "^15.4.3"
},
"devDependencies": {
"cypress": "^7.3.0",
"onchange": "^7.1.0",
"prettier": "^2.3.0"
},
"author": {
"name": "John Polacek",
"url": "https://www.johnpolacek.com"
},
"keywords": [
"nextjs",
"cheerio",
"scraper",
"scraping"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/johnpolacek/nextjs-scraper-playground/issues"
},
"homepage": "https://nextjs-scraper-playground.vercel.app"
}