-
-
Notifications
You must be signed in to change notification settings - Fork 217
/
package.json
71 lines (71 loc) · 2.18 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
62
63
64
65
66
67
68
69
70
71
{
"name": "rooks-project",
"private": true,
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/imbhargav5/rooks.git",
"author": "Bhargav Ponnapalli <[email protected]>",
"license": "MIT",
"workspaces": [
"apps/*",
"packages/*"
],
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"scripts": {
"build": "turbo run build --force -vvv",
"typecheck": "turbo run typecheck -vvv",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"test": "turbo run test",
"start": "turbo run start",
"coverage": "turbo run coverage",
"all-checks": "turbo run all-checks",
"commit": "cz",
"version-packages": "changeset version",
"changeset": "changeset",
"release": "changeset publish",
"version": "changeset version && node ./scripts/bump-peer-dep-ranges.js",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"contributors:check": "all-contributors check",
"contributors:update": "node scripts/update-all-contributors/index.mjs",
"create": "node scripts/create/index.mjs",
"new": "yarn run create",
"prebuild": "rimraf dist",
"update-package-list-to-markdown": "node scripts/update-package-list-to-markdown/index.mjs"
},
"husky": {
"hooks": {
"pre-commit": "if [[ $IS_GH_ACTION != 1 ]]; then lint-staged; fi;"
}
},
"lint-staged": {
"*.{html,js,ts,tsx,json,yml,css,scss}": "prettier --write"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.1",
"@manypkg/cli": "^0.20.0",
"@manypkg/get-packages": "^1.1.3",
"@types/inquirer": "^9.0.3",
"all-contributors-cli": "^6.24.0",
"conventional-changelog-cli": "^2.2.2",
"cz-conventional-changelog": "3.3.0",
"eslint-config-custom": "*",
"lint-staged": "^13.2.0",
"lodash": "^4.17.21",
"prettier": "^2.8.7",
"turbo": "latest",
"typescript": "^4.9.5"
},
"resolutions": {
"prettier": "^2.8.7"
},
"packageManager": "[email protected]"
}