-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 995 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 995 Bytes
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
{
"private": true,
"workspaces": [
"packages/docs",
"packages/eslint-config",
"packages/tokens",
"packages/ts-config",
"packages/react-native"
],
"scripts": {
"prepare": "husky install",
"dev": "turbo run dev --parallel",
"build": "turbo run build",
"lint": "turbo run lint",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build --filter=!docs && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.0.3",
"husky": "^8.0.3",
"rimraf": "^5.0.1",
"turbo": "^1.5.5"
},
"lint-staged": {
"*.{ts,tsx}": [
"turbo run lint --cwd"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"typescript": "^5.1.6"
}
}