-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.24 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
45
46
47
48
49
50
51
52
{
"name": "betternpm-monorepo",
"version": "0.0.0",
"private": true,
"description": "NPM packages with improvements!",
"keywords": [
"javascript",
"typescript",
"npm alternative",
"monorepo"
],
"author": "ineedjobtostartwork",
"license": "MIT",
"type": "module",
"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": {
"@changesets/cli": "^2.27.8",
"@types/lint-staged": "~13.3.0",
"commitsmile": "^0.6.1",
"globals": "^15.9.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"turbo": "latest"
},
"engines": {
"node": ">=20"
},
"lint-staged": {
"*": ""
},
"packageManager": "[email protected]"
}