-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.6 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.6 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
{
"name": "115master-monorepo",
"private": true,
"packageManager": "pnpm@9.15.9",
"description": "115master monorepo",
"author": "cbingb666",
"license": "MIT",
"homepage": "https://github.com/cbingb666/115master",
"repository": {
"type": "git",
"url": "https://github.com/cbingb666/115master.git"
},
"bugs": {
"url": "https://github.com/cbingb666/115master/issues"
},
"engines": {
"node": ">=20.12"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"dev:plus": "cross-env VITE_PLUS_VERSION=true turbo run dev",
"build:plus": "cross-env VITE_PLUS_VERSION=true turbo run build",
"type-check": "turbo run type-check",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"test:ui": "turbo run test:ui",
"test:coverage": "turbo run test:coverage",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"lint:inspector": "pnpm dlx @eslint/config-inspector",
"analyze": "turbo run analyze",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "changeset publish",
"preinstall": "npx -y only-allow pnpm",
"clean": "turbo run clean && rm -rf node_modules"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"cross-env": "^10.1.0",
"eslint": "^9.39.2",
"lint-staged": "^16.2.7",
"simple-git-hooks": "^2.13.1",
"turbo": "^2.3.4",
"typescript": "^5.7.3"
},
"simple-git-hooks": {
"pre-commit": "pnpm type-check && pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}