-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.58 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.58 KB
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
{
"name": "@monorepo/commitsmile",
"version": "0.1.0",
"private": true,
"scripts": {
"------------------------INSTALLATION-------------------": "",
"preinstall": "husky init",
"prepare": "husky",
"pre": "turbo pre",
"pre:husky": "git add . && lint-staged",
"------------------------UTILS--------------------------": "",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix",
"lint:next": "turbo lint:next",
"lint:test": "turbo lint:test",
"format": "turbo format",
"clean": "turbo clean",
"link-cli": "turbo link-cli",
"link-cli:dev": "turbo link-cli",
"unlink-cli:dev": "turbo link-cli",
"------------------------BUILDS-------------------------": "",
"dev": "turbo dev",
"build": "turbo build",
"build:dev": "turbo build:dev",
"build:prod": "turbo build:prod",
"build:npm": "turbo build:npm",
"------------------------DEPLOYS------------------------": "",
"start:dev": "turbo start:dev",
"start:prod": "turbo start:prod",
"npm:prepack": "turbo npm:prepack",
"npm:postpack": "turbo npm:postpack",
"npm:version": "changeset version",
"npm:publish": "changeset publish",
"------------------------TESTS--------------------------": "",
"test": "turbo test",
"bench": "turbo bench"
},
"devDependencies": {
"@changesets/cli": "^2.27.10",
"commitsmile": "^1.0.3",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"turbo": "latest"
},
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@9.14.2",
"dependencies": {
"@changesets/types": "^6.0.0"
}
}