-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.6 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
{
"name": "sysuke",
"version": "3.0.0",
"private": true,
"description": "self monorepo",
"keywords": [
"monorepo",
"turborepo"
],
"license": "MIT",
"author": "qinsong77",
"type": "module",
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "husky",
"dev": "turbo dev",
"build": "turbo build",
"build: no-chche": "turbo build --no-cache",
"clean": "turbo run clean && rimraf node_modules",
"format:fix": "prettier '**/*.{js,jsx,ts,tsx,json,md}' --write",
"lint": "turbo lint",
"type-check": "turbo type-check",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build --filter='@sysuke/*' && changeset publish",
"build:web": "turbo build --filter=web",
"preview:web": "turbo preview --filter=web"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.8",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@commitlint/types": "^19.5.0",
"@sysuke/eslint-config": "workspace:*",
"@sysuke/typescript-config": "workspace:*",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^20",
"eslint": "^8.57.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"rimraf": "^6.0.1",
"tsc-files": "^1.1.4",
"turbo": "latest",
"typescript": "5.5.4"
},
"packageManager": "pnpm@9.8.0",
"engines": {
"node": ">=18.17.0",
"npm": "please use pnpm",
"pnpm": ">=8",
"yarn": "please use pnpm"
}
}