forked from channel-io/bezier-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 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
{
"private": true,
"license": "Apache-2.0",
"workspaces": [
"packages/*",
"supports/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --no-cache --parallel",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"test:ci": "turbo run test:ci",
"clean": "turbo run clean && rm -rf node_modules .turbo",
"release": "turbo run build [email protected]/bezier-react && changeset publish",
"storybook": "yarn workspace @channel.io/bezier-react storybook",
"update-snapshot": "yarn workspace @channel.io/bezier-react update-snapshot",
"pre-commit": "run-s verify lint-staged typecheck test",
"verify": "ts-node -P ./supports/tsconfig/script.json ./scripts/check-yarn-version.ts",
"lint-staged": "lint-staged",
"changeset": "changeset",
"postinstall": "husky install"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.7",
"@changesets/cli": "^2.23.0",
"@channel.io/stylelint-config": "^1.2.0",
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^13.1.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-config-bezier": "workspace:*",
"husky": "^8.0.3",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"stylelint": "^13.8.0",
"ts-node": "^10.9.1",
"turbo": "^1.6.3",
"typescript": "^4.8.4"
},
"engines": {
"node": "18.15.0",
"yarn": "3.4.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"packageManager": "[email protected]"
}