forked from TDesignOteam/tdesign-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.33 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
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
70
71
72
{
"name": "tdesign-api",
"version": "0.0.1",
"description": "a tool for manage API",
"main": "index.js",
"private": true,
"dependencies": {
"koa": "^2.13.0",
"koa-body": "^4.2.0",
"koa-bodyparser": "^4.3.0",
"koa-cors": "^0.0.16",
"koa-json": "^2.0.2",
"koa-logger": "^3.2.1",
"koa-router": "^9.4.0",
"koa-send": "^5.0.1",
"koa-static": "^5.0.0",
"koa2-cors": "^2.0.6",
"lodash": "^4.17.20",
"moment": "^2.29.1",
"node-fetch": "^2.6.1",
"qs": "^6.9.4",
"sql.js": "^1.8.0",
"squel": "^5.13.0",
"tdesign-icons-vue": "^0.1.6",
"tdesign-vue": "^1.9.0"
},
"devDependencies": {
"@types/koa": "^2.11.6",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-json": "^2.0.18",
"@types/koa-logger": "^3.1.1",
"@types/koa-router": "^7.4.1",
"@types/koa-send": "^4.1.3",
"@types/koa-static": "^4.0.2",
"@types/koa2-cors": "^2.0.1",
"@types/lodash": "^4.14.165",
"@types/node": "^18.14.1",
"@types/node-fetch": "^2.5.7",
"@types/pify": "^3.0.2",
"@types/validator": "^13.1.3",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"axios": "^1.6.7",
"chalk": "^4.1.2",
"cross-env": "^7.0.3",
"eslint": "^7.15.0",
"nodemon": "^2.0.6",
"pm2": "^4.5.0",
"prettier": "^2.7.1",
"shelljs": "^0.8.5",
"ts-node": "^8.10.2",
"tsconfig-paths": "^3.9.0",
"tslint": "^6.1.3",
"typescript": "^3.9.6"
},
"scripts": {
"lint": "eslint ./packages --max-warnings 0 --ext .ts,.tsx --fix",
"dev": "cross-env NODE_ENV=dev nodemon",
"prod": "npm run build && npx pm2 start ecosystem.config.js --env production",
"reload": "npm run build && pm2 reload api-server --parallel 32 --update-env",
"api:download": "node packages/scripts/download.js",
"api:upload": "node packages/scripts/upload.js",
"api:test": "node packages/scripts/vitest/tests/core/run.js",
"api:pure": "node packages/scripts/index.js",
"api:docs": "git checkout main && git pull && node packages/scripts/index.js",
"api:vscode": "git checkout main && git pull && node packages/scripts/vscode",
"api:helper": "git checkout main && git pull && node packages/scripts/helper",
"api:configurable": "node packages/scripts/configurable-props"
},
"author": "TDesign",
"license": "ISC"
}