-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.71 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
83
84
85
86
87
88
{
"name": "@ying-web/web",
"private": true,
"version": "1.0.0",
"description": "a collection of Kris's web projects",
"main": "index.js",
"scripts": {
"dev": "node scripts/dev.js",
"build": "node scripts/build.js",
"build:api-service": "turbo run build --filter @ying-web/api-service",
"build:admin": "turbo run build --filter @ying-web/admin",
"build:diary": "turbo run build --filter @ying-web/diary",
"build:events": "turbo run build --filter @ying-web/events",
"build:tools": "turbo run build --filter @ying-web/tools",
"build:test-config": "turbo run build --filter @ying-web/test-config",
"build:eslint-config": "turbo run build --filter @ying-web/eslint-config",
"clean": "node scripts/clean.js",
"deploy": "node scripts/deploy.js",
"prepare": "husky install",
"commit": "cz",
"cz": "git add . && pnpm run format && pnpm run commit && git push",
"lint-staged": "lint-staged",
"changeset": "changeset",
"version": "changeset version",
"release": "changeset publish",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"test:coverage": "turbo run test:coverage",
"format": "prettier --write .",
"lint": "turbo run lint"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md,css,less}": [
"prettier --write"
]
},
"keywords": [
"Web",
"@ying-web",
"Api service",
"Dashboard",
"Frontend",
"JavaScript",
"TypeScript"
],
"author": "Kris <chenjinwen77@gmail.com> https://www.krissarea.com",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"enquirer": "^2.4.1",
"execa": "^8.0.1",
"husky": "^9.1.7",
"inquirer": "^9.2.19",
"lint-staged": "^15.2.10",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"turbo": "^2.3.1",
"typescript": "~5.5.3"
},
"workspaces": [
"apps/*",
"packages/*",
"services/*"
],
"engines": {
"node": ">= 18.16.0",
"pnpm": "9"
},
"packageManager": "pnpm@9.14.4",
"pnpm": {
"overrides": {
"@ying-web/*": "workspace:*",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "~5.5.3",
"axios": "^0.21.1"
}
}
}