-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
38 lines (38 loc) · 915 Bytes
/
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
{
"name": "meituan-reptile-study",
"private": true,
"main": "./build/cli.js",
"bin": {
"meituan-reptile-study": "./build/cli.js",
"mt": "./build/cli.js"
},
"scripts": {
"dev": "concurrently \"tsc -w\" \"nodemon\"",
"build": "rm -rf lib && tsc",
"start": "nodemon",
"test": ""
},
"dependencies": {
"args": "^5.0.3",
"cheerio": "^1.0.0-rc.12",
"debug": "^4.3.4",
"puppeteer": "^15.5.0",
"queue": "^6.0.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@types/args": "^5.0.0",
"@types/debug": "^4.1.7",
"@types/jest": "^29.0.0",
"@types/node": "^16.11.7",
"@types/uuid": "^8.3 .4",
"babel-jest": "^29.0.1",
"concurrently": "^7.3.0",
"jest": "^29.0.1",
"nodemon": "^2.0.19",
"typescript": "^4.8.2"
}
}