-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 loc) · 1.04 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
{
"name": "create-node-app-tools",
"version": "0.0.0",
"workspaces": [
"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",
"prepare": "is-ci || husky install",
"publish-packages": "turbo run lint && changeset version && turbo run build && changeset publish",
"storybook": "turbo run storybook",
"test": "turbo run test",
"type-check": "turbo run type-check"
},
"devDependencies": {
"@changesets/cli": "^2.25.0",
"@create-node-app/eslint-config": "*",
"husky": "^9.0.6",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.1",
"prettier": "^2.7.1",
"turbo": "^1.11.3"
},
"dependencies": {
"tsup": "^6.2.3"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=18.0.0"
},
"packageManager": "[email protected]"
}