-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.25 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.25 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
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
{
"name": "SOSO-Front-End",
"version": "1.0.0",
"description": "",
"main": "index.js",
"packageManager": "pnpm@10.24.0",
"scripts": {
"dev": " turbo run dev --parallel",
"dev:web": "pnpm --filter web dev:https",
"dev:docs": "pnpm --filter docs dev",
"build": " turbo run build",
"build:packages": "turbo run build --filter='./packages/*'",
"lint": " turbo run lint",
"lint:fix": " turbo run lint -- --fix",
"typecheck": " turbo run typecheck",
"test": " turbo run test",
"test:ci": " turbo run test:coverage",
"test:packages": "turbo run test --filter='./packages/*'",
"commitlint": "commitlint --from HEAD~1 --to HEAD --verbose",
"hooks:help": "sh .husky/help.sh",
"validate": "pnpm lint && pnpm typecheck && pnpm test",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm build:packages && changeset publish",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"private": true,
"engines": {
"node": "^24",
"pnpm": "^10"
},
"workspaces": [
"apps/*",
"packages/*",
"tools/*"
],
"pnpm": {
"overrides": {
"@types/node": "^24"
},
"peerDependencyRules": {
"allowedVersions": {
"@typescript-eslint/eslint-plugin": "8",
"@typescript-eslint/parser": "8",
"eslint-plugin-react-hooks": "5"
}
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{js,jsx}": [
"prettier --write"
],
"*.{json,md,css,scss,yaml,yml}": [
"prettier --write"
]
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@types/node": "24.10.1",
"@typescript-eslint/eslint-plugin": "^8.35.1",
"@typescript-eslint/parser": "^8.35.1",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"husky": "^8.0.0",
"lint-staged": "^16.1.2",
"prettier": "^3.6.2",
"turbo": "^2.5.4"
}
}