-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
61 lines (61 loc) · 1.92 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
{
"name": "bezier-react-monorepo",
"private": true,
"license": "Apache-2.0",
"workspaces": [
"packages/*",
"configs/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --filter=@channel.io/bezier-react",
"lint": "turbo run lint && syncpack lint",
"format": "prettier . --write",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"clean": "turbo run clean && rm -rf node_modules .turbo",
"version-packages": "changeset version && yarn --mode=\"update-lockfile\"",
"release": "turbo run build --filter='@channel.io/*' && changeset publish && yarn workspace bezier-vscode publish",
"update-snapshot": "yarn workspace @channel.io/bezier-react update-snapshot",
"changeset": "changeset",
"postinstall": "husky install",
"knip": "knip --config knip.json --workspace packages/bezier-react --cache"
},
"devDependencies": {
"@changesets/cli": "^2.27.10",
"@changesets/get-github-info": "^0.6.0",
"@changesets/types": "^6.0.0",
"@channel.io/prettier-config": "^0.0.1",
"@channel.io/stylelint-bezier": "workspace:*",
"@channel.io/stylelint-config": "^2.0.0",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@swc/core": "^1.10.1",
"@swc/jest": "^0.2.37",
"@types/jest": "^29.5.14",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.1",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"knip": "^5.39.4",
"npm-run-all2": "^7.0.1",
"prettier": "^3.4.2",
"stylelint": "^16.11.0",
"syncpack": "^13.0.0",
"ts-node": "^10.9.2",
"turbo": "^2.3.3",
"typescript": "^5.7.2"
},
"engines": {
"node": "22.12.0",
"yarn": "4.5.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"packageManager": "yarn@4.5.3",
"prettier": "@channel.io/prettier-config"
}