-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.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": "^3.1.2",
"@nestjs/bull": "^10.2.2",
"@nestjs/common": "^10.4.8",
"@nestjs/core": "^10.4.8",
"@nestjs/mapped-types": "^2.0.6",
"@nestjs/platform-express": "^10.4.8",
"@nestjs/swagger": "^8.0.7",
"@nestjs/terminus": "^10.2.3",
"@nestjs/typeorm": "^10.0.2",
"@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.7",
"bull": "^4.16.4",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"express": "^4.21.1",
"ioredis": "^5.4.1",
"lodash": "^4.17.21",
"multer": "1.4.5-lts.1",
"mysql2": "^3.11.4",
"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.10",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/cz-commitlint": "^19.5.0",
"@nestjs/cli": "^10.4.8",
"@nestjs/schematics": "^10.2.3",
"@types/express": "^5.0.0",
"@types/lodash": "^4.17.13",
"@types/multer": "^1.4.12",
"@types/node": "20.4.1",
"commitizen": "^4.3.1",
"eslint": "^9.15.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"postcss": "^8.4.49",
"prettier": "^3.3.3",
"stylelint": "^16.10.0",
"taze": "^0.18.0",
"typescript": "^5.7.2"
}
}