-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
55 lines (55 loc) · 1.62 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
{
"name": "bezier-react-monorepo",
"private": true,
"license": "Apache-2.0",
"workspaces": [
"packages/*",
"supports/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev [email protected]/bezier-react",
"lint": "turbo run lint",
"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",
"update-snapshot": "yarn workspace @channel.io/bezier-react update-snapshot",
"changeset": "changeset",
"postinstall": "husky install"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@changesets/get-github-info": "^0.5.2",
"@changesets/types": "^5.2.1",
"@channel.io/stylelint-config": "^1.2.0",
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@swc/core": "^1.3.83",
"@swc/jest": "^0.2.29",
"@types/jest": "^29.5.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-config-bezier": "workspace:*",
"husky": "^8.0.3",
"jest": "^29.6.4",
"jest-environment-jsdom": "^29.6.4",
"npm-run-all": "^4.1.5",
"stylelint": "^13.13.1",
"ts-node": "^10.9.1",
"turbo": "^1.10.13",
"typescript": "^4.9.5",
"typescript-plugin-css-modules": "^5.0.1"
},
"engines": {
"node": "18.18.2",
"yarn": "3.4.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"packageManager": "[email protected]"
}