-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "demo-node",
"version": "1.0.0",
"description": "demo of node cli or server",
"private": false,
"author": "w",
"license": "ISC",
"type": "module",
"scripts": {
"preinstall": "npx only-allow pnpm",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon --watch 'src/**/*.ts' --exec npx ts-node src/index.ts",
"dev:win": "nodemon --watch 'src/**/*.ts' --exec \"npx ts-node\" src/index.ts",
"create": "npm run build && npm run test",
"build": "tsc -p .",
"local": "sudo npm i -g && pizza",
"local:win": "npm i -g && pizza",
"reinstall": "rm -rf ./node_modules ./pnpm-lock.yaml && pnpm install",
"lint": "eslint --ext .js,.html src",
"format": "prettier --write \"src/**/*.js\""
},
"dependencies": {
"axios": "^1.1.3",
"chalk": "4.1.2",
"clear": "^0.1.0",
"colors": "^1.4.0",
"commander": "^9.3.0",
"dayjs": "^1.11.5",
"download-git-repo": "^3.0.2",
"eslint-plugin-html": "^7.1.0",
"figlet": "^1.5.2",
"fs-extra": "^10.1.0",
"google-translate-api-x": "^10.4.2",
"koa": "^2.13.4",
"koa-bodyparser": "^4.3.0",
"koa-router": "^12.0.0",
"koa-static": "^5.0.0",
"node-xlsx": "^0.21.0",
"path": "^0.12.7",
"ssh2-sftp-client": "^9.0.4",
"tencentcloud-sdk-nodejs": "^4.0.461",
"tunnel": "^0.0.6",
"youdao-fanyi": "^2.0.0"
},
"devDependencies": {
"@types/clear": "^0.1.2",
"@types/figlet": "^1.5.4",
"@types/fs-extra": "^9.0.13",
"@types/koa": "^2.13.5",
"@types/koa-bodyparser": "^4.3.8",
"@types/koa-router": "^7.4.4",
"@types/koa-static": "^4.0.2",
"@types/node": "^18.0.1",
"@types/ssh2-sftp-client": "^7.1.0",
"@types/tunnel": "^0.0.3",
"eslint": "^8.18.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.18",
"npm-run-all": "^4.1.5",
"only-allow": "^1.1.1",
"prettier": "^2.7.1",
"ts-node": "^10.8.2",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.7.4"
},
"engines": {
"node": "> 14.x"
}
}