-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.07 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
{
"name": "oh-my-error-monorepo",
"version": "0.0.0",
"private": true,
"description": "",
"main": "index.js",
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"build:npm": "turbo build:npm",
"start": "turbo start",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix",
"lint:test": "turbo lint:fix",
"format": "turbo format",
"bench": "turbo bench",
"clean": "turbo clean",
"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": "git add . && lint-staged",
"prepare": "husky",
"test": "turbo test"
},
"devDependencies": {
"commitsmile": "^0.6.1",
"turbo": "^2.3.0",
"lint-staged": "^15.2.10",
"husky": "^9.1.6",
"@changesets/cli": "^2.27.8"
},
"author": "INEEDJ <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=20"
},
"lint-staged": {
"*": ""
},
"packageManager": "[email protected]"
}