-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.84 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
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "pickk-chrome",
"version": "1.0.0",
"description": "pickk's puppeteer crawl server",
"main": "src/app.ts",
"scripts": {
"dev": "nodemon",
"inspect": "nodemon --inspect src/app.ts",
"lint": "eslint --fix src && prettier --write \"src/**/*.ts\"",
"tsc": "tsc --noEmit",
"jest": "jest",
"test": "yarn lint && yarn tsc && yarn jest",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DEV-MUGLES/pickk-chrome"
},
"keywords": [
"js",
"javascript",
"typescript",
"node",
"express",
"puppeteer",
"chrome"
],
"author": "Sumin Choi",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"generic-pool": "^3.7.1",
"lodash": "^4.17.20",
"moment": "^2.29.0",
"moment-timezone": "^0.5.31",
"puppeteer": "^5.5.0",
"puppeteer-extra": "^3.1.15",
"puppeteer-extra-plugin-stealth": "^2.6.5",
"querystring": "^0.2.1",
"reflect-metadata": "^0.1.13",
"typedi": "^0.8.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/express": "^4.17.8",
"@types/generic-pool": "^3.1.9",
"@types/jest": "^26.0.14",
"@types/lodash": "^4.14.161",
"@types/node": "^14.11.2",
"@types/puppeteer": "^5.4.0",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.4.2",
"nodemon": "^2.0.4",
"prettier": "^2.1.2",
"ts-jest": "^26.4.0",
"ts-node": "^9.0.0",
"tslint": "^5.20.1",
"typescript": "^4.0.3"
},
"bugs": {
"url": "https://github.com/DEV-MUGLES/pickk-chrome/issues"
},
"homepage": "https://github.com/DEV-MUGLES/pickk-chrome#readme"
}