-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.08 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
{
"name": "commitsmile-monorepo",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"build:npm": "turbo build:npm",
"start": "turbo start",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix",
"format": "turbo format",
"clean": "turbo clean",
"link-cli": "turbo link-cli",
"link-cli:dev": "turbo link-cli:dev",
"unlink-cli:dev": "turbo unlink-cli:dev",
"npm:prepack": "turbo npm:prepack",
"npm:postpack": "turbo npm:postpack",
"npm:version": "changeset version",
"npm:publish": "changeset publish",
"preinstall": "husky init",
"pre": "turbo pre",
"pre:husky": "husky && git add . && npx lint-staged",
"prepare": "husky",
"test": "echo \"Error: no test specified\""
},
"devDependencies": {
"@changesets/cli": "^2.27.10",
"commitsmile": "workspace:^",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"turbo": "latest"
},
"engines": {
"node": ">=20"
},
"packageManager": "[email protected]",
"dependencies": {
"@changesets/types": "^6.0.0"
}
}