-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
32 lines (32 loc) · 834 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
{
"name": "vue-school",
"version": "1.0.0",
"description": "Vue Shool downloader",
"main": "index.js",
"scripts": {
"download": "node index.js",
"dev": "nodemon --ignore *.json --ignore *.log index.js",
"format": "eslint src --fix --cache && prettier --write ./src",
"lint": "eslint src --fix --cache",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"app-root-path": "^3.0.0",
"axios": "^0.21.4",
"cli-progress": "^3.10.0",
"delay": "^5.0.0",
"dotenv": "^8.6.0",
"fs-extra": "^10.1.0",
"puppeteer": "^13.6.0",
"puppeteer-core": "^13.6.0",
"winston": "^3.7.2"
},
"devDependencies": {
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.6.2"
}
}