-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
66 lines (66 loc) · 2.03 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
{
"name": "fullstack-blog",
"version": "3.1.0",
"type": "module",
"private": true,
"packageManager": "[email protected]",
"keywords": [
"vue",
"vue3",
"nodejs",
"express",
"typescript",
"monorepo",
"fullstack",
"blog"
],
"description": "This is a full-stack blog project based on Vue3, typescript, nodejs, express, which uses pnpm monorepo architecture and supports Docker containerization",
"author": "Tusi",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cumt-robin/fullstack-blog.git"
},
"bugs": {
"url": "https://github.com/cumt-robin/fullstack-blog/issues"
},
"homepage": "https://blog.wbjiang.cn/",
"scripts": {
"changeset": "changeset",
"webpack-vue3:dev": "pnpm --filter webpack-vue3 dev",
"vite-vue3:dev": "pnpm --filter vite-vue3 dev",
"cra-react18:dev": "pnpm --filter cra-react18 dev",
"express-server:dev": "pnpm --filter express-server dev",
"nest-server:dev": "pnpm --filter nest-server dev",
"fullstack:dev": "pnpm --filter vite-vue3 --filter nest-server dev",
"webpack-vue3:build": "pnpm --filter webpack-vue3 build",
"vite-vue3:build": "pnpm --filter vite-vue3 build",
"cra-react18:build": "pnpm --filter cra-react18 build",
"lint-fix": "pnpm --filter ./app/** lint-fix",
"lint": "pnpm --filter ./app/** lint",
"prepare": "husky",
"version-bump": "pnpm changeset version && pnpm install --no-frozen-lockfile",
"release": "pnpm changeset tag && git push --follow-tags",
"sync-remote-tags": "git tag -l | xargs git tag -d && git pull --tags"
},
"devDependencies": {
"@changesets/cli": "^2.27.5",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"engines": {
"pnpm": ">=9.0.0",
"node": ">=18.0.0"
},
"volta": {
"node": "18.20.5"
}
}