-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.02 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
{
"name": "collection-blog",
"version": "2.0.0",
"description": "采集博客",
"main": "main.js",
"keywords": [
"nodemailer",
"cheerio",
"request"
],
"scripts": {
"dev": "ts-node ./src/main.ts",
"prebuild": "rm -rf dist",
"build": "ts-node ./src/main.ts",
"postbuild": "cp -R public ./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tcly861204/node-collection-blog.git"
},
"author": "tcly861204 <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tcly861204/node-collection-blog/issues"
},
"homepage": "https://github.com/tcly861204/node-collection-blog#readme",
"dependencies": {
"@types/node": "^17.0.10",
"@types/request": "^2.48.8",
"@types/superagent": "^4.1.16",
"cheerio": "^1.0.0-rc.10",
"nodemailer": "^6.7.2",
"request": "^2.88.2",
"superagent": "^8.0.9",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"devDependencies": {
"@types/nodemailer": "^6.4.4"
}
}