-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 854 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 854 Bytes
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
{
"name": "root",
"private": true,
"license": "MIT",
"author": "Kyedo <hey@kyedo.dev> (https://github.com/itskyedo)",
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"formatcheck": "prettier --check .",
"format": "prettier --write .",
"lint": "turbo lint",
"check": "npm run formatcheck && turbo check",
"fix": "turbo fix",
"test": "turbo test",
"clean": "turbo clean && rm -rf node_modules"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@vitest/coverage-v8": "^3.0.7",
"lefthook": "^1.10.10",
"prettier": "^3.4.2",
"prettier-plugin-jsdoc": "^1.3.2",
"turbo": "^2.3.4",
"vitest": "^3.0.7"
},
"engines": {
"node": ">=18"
},
"packageManager": "npm@10.8.2",
"workspaces": [
"packages/*"
]
}