-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.31 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
70
71
72
73
74
{
"name": "tdesign-api",
"packageManager": "pnpm@11.5.0",
"version": "0.0.1",
"description": "a tool for manage API",
"main": "index.js",
"private": true,
"scripts": {
"lint": "eslint ./packages --max-warnings 0",
"lint:fix": "eslint ./packages --max-warnings 0 --fix",
"build": "tsc",
"dev": "cross-env NODE_ENV=dev nodemon",
"prod": "npm run build && npx pm2 start ecosystem.config.cjs --env production",
"reload": "npm run build && pm2 reload ecosystem.config.cjs --env production --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": "node packages/scripts/index.js",
"api:vscode": "node packages/scripts/vscode",
"api:helper": "node packages/scripts/helper",
"api:configurable": "node packages/scripts/configurable-props"
},
"dependencies": {
"@koa/bodyparser": "catalog:",
"@koa/cors": "catalog:",
"@koa/router": "catalog:",
"@koa/send": "catalog:",
"koa": "catalog:",
"koa-body": "catalog:",
"koa-json": "catalog:",
"koa-logger": "catalog:",
"koa-static": "catalog:",
"lodash": "catalog:",
"moment": "catalog:",
"qs": "catalog:",
"sql.js": "catalog:",
"squel": "catalog:"
},
"devDependencies": {
"@types/koa": "catalog:",
"@types/koa-json": "catalog:",
"@types/koa-logger": "catalog:",
"@types/koa-static": "catalog:",
"@types/koa__cors": "catalog:",
"@types/lodash": "catalog:",
"@types/node": "catalog:",
"@types/validator": "catalog:",
"@typescript-eslint/eslint-plugin": "catalog:",
"@typescript-eslint/parser": "catalog:",
"axios": "catalog:",
"chalk": "catalog:",
"cross-env": "catalog:",
"eslint": "catalog:",
"eslint-plugin-import-x": "catalog:",
"globals": "catalog:",
"lint-staged": "catalog:",
"nodemon": "catalog:",
"pm2": "catalog:",
"prettier": "catalog:",
"shelljs": "catalog:",
"ts-node": "catalog:",
"tsconfig-paths": "catalog:",
"typescript": "catalog:"
},
"lint-staged": {
"*.{js,ts,vue,tsx}": [
"prettier --write --cache",
"eslint --fix --cache"
]
},
"author": "TDesign",
"license": "ISC"
}