-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.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
{
"name": "ts-monorepo-boilerplate",
"version": "0.0.0",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"build-storybook": "turbo run build-storybook",
"changeset": "changeset",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,md,json,css,sass,scss,less,html,yml,yaml}\"",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"lint-staged": "lint-staged",
"local": "docker-compose -f ./local-dev/compose.yml",
"local:down": "npm run local down",
"local:up": "npm run local up -- -d",
"prepare": "is-ci || husky install",
"publish-packages": "turbo run build lint && changeset version && changeset publish",
"storybook": "turbo run storybook",
"test": "turbo run test",
"typecheck": "turbo run typecheck"
},
"devDependencies": {
"@changesets/cli": "^2.25.0",
"@nanlabs/eslint-config-custom": "*",
"husky": "^8.0.2",
"is-ci": "^3.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"turbo": "^1.8.3"
},
"dependencies": {
"tsup": "^6.2.3"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=14.0.0"
},
"packageManager": "[email protected]"
}