-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.65 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
{
"name": "@yourssu/yrano",
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/yourssu/Yrano"
},
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"lint": "turbo lint",
"lint-staged": "lint-staged",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"ci:version": "changeset version",
"logging-system": "pnpm --filter @yourssu/logging-system-react",
"utils": "pnpm --filter @yourssu/utils",
"react": "pnpm --filter @yourssu/react",
"eslint-config": "pnpm --filter @yourssu/eslint-config",
"prettier-config": "pnpm --filter @yourssu/prettier-config",
"example": "pnpm --filter example",
"prepare": "husky",
"test": "vitest",
"test:ui": "vitest --ui"
},
"lint-staged": {
"src/**/*.{js, jsx, ts, tsx}": [
"eslint --fix",
"prettier --write"
]
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@yourssu/prettier-config": "workspace:*",
"@changesets/cli": "^2.27.3",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@vitest/ui": "^1.6.0",
"eslint": "^8.45.0",
"husky": "^9.0.11",
"jsdom": "^24.1.0",
"lint-staged": "^15.2.5",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsup": "^8.0.2",
"turbo": "latest",
"typescript": "^5.0.2",
"vitest": "^1.6.0"
},
"pnpm": {
"overrides": {
"@typescript-eslint/eslint-plugin": "7.5.0",
"@typescript-eslint/parser": "7.5.0"
}
},
"prettier": "@yourssu/prettier-config"
}