-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 777 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 777 Bytes
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
{
"name": "sdu-score-helper",
"version": "0.0.0",
"description": "山大成绩查询小助手",
"private": true,
"main": "dist/index.js",
"scripts": {
"clean": "rimraf -rf dist",
"build": "npm run clean && tsc -p tsconfig.json",
"start": "node ./dist/index.js",
"dev": "ts-node ./src/index.ts"
},
"author": "grapedge <grapedge@gmail.com>",
"license": "MIT",
"dependencies": {
"node-fetch": "^2.6.1",
"nodemailer": "^6.6.2",
"tough-cookie": "^4.0.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@types/node": "^15.12.5",
"@types/node-fetch": "^2.5.10",
"@types/nodemailer": "^6.4.2",
"@types/tough-cookie": "^4.0.0",
"@types/yamljs": "^0.2.31",
"rimraf": "^3.0.2",
"typescript": "^4.3.4"
}
}