-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.58 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
{
"name": "turbo-monorepo-boilerplate-ts",
"version": "1.3.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo run dev --parallel",
"build": "turbo run build",
"dev:production": "turbo run dev:production --parallel",
"dev:staging": "turbo run dev:staging --parallel",
"build:development": "turbo run build:development",
"build:staging": "turbo run build:staging",
"build:storybook": "turbo run build-storybook",
"preview": "turbo run preview",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{js,ts,tsx,md}\"",
"clean:root": "rm -rf node_modules",
"clean": "turbo run clean && npm run clean:root ",
"plop": "plop",
"changeset": "npx changeset --open",
"version": "npx changeset version",
"publish": "npx changeset publish",
"prepare": "husky install",
"commit": "git add . && npx czg",
"release-boilerplate": "standard-version"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"engines": {
"node": ">=16.6.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"packageManager": "[email protected]",
"devDependencies": {
"@changesets/cli": "^2.27.1",
"eslint-config-custom": "^0.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"plop": "^3.1.2",
"prettier": "^3.2.5",
"standard-version": "^9.5.0",
"tsup": "^6.7.0",
"turbo": "^1.13.3",
"typescript": "^4.9.5"
}
}