-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
82 lines (82 loc) · 2.81 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
73
74
75
76
77
78
79
80
81
82
{
"name": "vivy-nest-admin",
"type": "module",
"version": "0.0.1",
"private": true,
"license": "MIT",
"author": "haiweilian <haiweilian@foxmail.com>",
"homepage": "https://github.com/haiweilian/vivy-nest-admin",
"scripts": {
"prepare": "husky",
"preinstall": "npx only-allow pnpm",
"commit": "cz",
"lint:lint-staged": "lint-staged",
"lint:eslint": "eslint --fix --cache \"**/*.{js,jsx,ts,tsx}\"",
"lint:stylelint": "stylelint --fix --cache \"**/*.{css,scss,less,styl}\"",
"lint:prettier": "prettier --write \"**/*.{css,scss,less,styl,js,jsx,ts,tsx}\"",
"pm2:dev": "pm2 start ecosystem.config.cjs --env development",
"pm2:prod": "pm2 start ecosystem.config.cjs --env production",
"pm2:stop": "pm2 stop ecosystem.config.cjs",
"build": "pnpm build:common && pnpm --recursive --stream build",
"build:common": "pnpm --filter=@vivy-common/** build",
"docker:rm": "docker-compose rm",
"docker:stop": "docker-compose stop",
"docker:base": "docker-compose up -d vivy-admin-mysql vivy-admin-redis"
},
"dependencies": {
"@nestjs-modules/ioredis": "^2.0.2",
"@nestjs/axios": "^4.0.0",
"@nestjs/bull": "^11.0.2",
"@nestjs/common": "^11.0.7",
"@nestjs/core": "^11.0.7",
"@nestjs/mapped-types": "^2.1.0",
"@nestjs/platform-express": "^11.0.7",
"@nestjs/swagger": "^11.0.3",
"@nestjs/terminus": "^11.0.0",
"@nestjs/typeorm": "^11.0.0",
"@vivy-common/config": "workspace:*",
"@vivy-common/core": "workspace:*",
"@vivy-common/datascope": "workspace:^",
"@vivy-common/excel": "workspace:*",
"@vivy-common/logger": "workspace:*",
"@vivy-common/mybatis": "workspace:*",
"@vivy-common/security": "workspace:*",
"@vivy-common/swagger": "workspace:*",
"axios": "^1.7.9",
"bull": "^4.16.5",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"express": "^4.21.2",
"ioredis": "^5.4.2",
"lodash": "^4.17.21",
"multer": "1.4.5-lts.1",
"mysql2": "^3.12.0",
"nestjs-typeorm-paginate": "^4.0.4",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1",
"typeorm": "^0.3.20"
},
"devDependencies": {
"@bfehub/eslint-config-typescript": "^3.1.0",
"@bfehub/stylelint-config-basic": "^3.1.0",
"@changesets/cli": "^2.27.12",
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@commitlint/cz-commitlint": "^19.6.1",
"@nestjs/cli": "^11.0.2",
"@nestjs/schematics": "^11.0.0",
"@types/express": "^5.0.0",
"@types/lodash": "^4.17.15",
"@types/multer": "^1.4.12",
"@types/node": "^22.13.1",
"commitizen": "^4.3.1",
"eslint": "^9.19.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"stylelint": "^16.14.1",
"taze": "^18.4.0",
"typescript": "^5.7.3"
}
}