-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
59 lines (59 loc) · 1.73 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
52
53
54
55
56
57
58
59
{
"name": "daily-scraper",
"private": true,
"scripts": {
"start": "node index.js",
"dev": "nodemon ./index.ts | pino-pretty",
"lint": "eslint . --ext .js,.ts --max-warnings 0",
"build": "tsc",
"prebuild": "rm -rf build",
"postbuild": "cp -R package.json package-lock.json ./build",
"test": "jest --testEnvironment=node --runInBand",
"pretest": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dailydotdev/daily-scraper.git"
},
"bugs": {
"url": "https://github.com/dailydotdev/daily-scraper/issues"
},
"homepage": "https://github.com/dailydotdev/daily-scraper#readme",
"dependencies": {
"@fastify/cors": "^7.0.0",
"@google-cloud/trace-agent": "^5.1.3",
"@sinclair/typebox": "^0.23.1",
"dotenv": "^10.0.0",
"fast-json-stringify": "^2.7.8",
"fastify": "^3.25.0",
"fastify-helmet": "^5.3.2",
"fastify-rate-limit": "^5.7.0",
"feedparser": "^2.2.10",
"generic-pool": "^3.8.2",
"puppeteer": "^13.5.2"
},
"devDependencies": {
"@types/feedparser": "^2.2.4",
"@types/generic-pool": "^3.1.10",
"@types/jest": "^27.0.3",
"@types/node": "^16.9.2",
"@types/puppeteer": "^5.4.5",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.2",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"fastify-static": "^4.5.0",
"jest": "^26.6.3",
"jest-junit": "^13.0.0",
"nodemon": "^2.0.12",
"pino-pretty": "^6.0.0",
"prettier": "^2.3.2",
"supertest": "^6.1.6",
"ts-jest": "^26.5.6",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
}
}