-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 917 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
{
"name": "server",
"version": "1.0.0",
"main": "dist/app.js",
"author": "kanoqwq <1540508428@qq.com>",
"license": "MIT",
"devDependencies": {
"@types/koa": "^2.13.5",
"@types/koa-router": "^7.4.4",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"koa-router": "^12.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.0",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.3"
},
"scripts": {
"dev": "ts-node-dev --respawn src/app.ts",
"resetFolder": "rimraf dist/*",
"compile": "tsc",
"build": "npm-run-all resetFolder compile",
"start": "pm2 start ./dist/app.js"
},
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"dotenv": "^16.0.3",
"koa": "^2.13.4",
"tcadif": "^1.5.0",
"xlsx": "^0.18.5"
}
}