-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.65 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.65 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
53
{
"name": "@seljs/monorepo",
"private": true,
"license": "Apache-2.0",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo build",
"check": "concurrently 'yarn:format:check' 'turbo check'",
"clean": "rimraf packages/*/dist",
"fix": "concurrently 'yarn:format:fix' 'turbo fix'",
"format:check": "prettier --check '{*,.github/**/*}.{json{,5},md,y{,a}ml}'",
"format:fix": "prettier --write '{*,.github/**/*}.{json{,5},md,y{,a}ml}'",
"postinstall": "husky install",
"sort:check": "sort-package-json '{apps,packages}/**!(node_modules)/package.json' 'package.json' --check",
"sort:fix": "sort-package-json '{apps,packages}/**!(node_modules)/package.json' 'package.json'",
"start:dev": "turbo watch start:dev",
"test": "turbo run build && vitest run",
"test-e2e": "turbo run build && vitest run --project '*#e2e'",
"test-integration": "turbo run build && vitest run --project '*#integration'",
"test-unit": "turbo run build && vitest run --project '*#unit'"
},
"commitlint": {
"extends": [
"@abinnovision/commitlint-config"
]
},
"lint-staged": {
"{*,.github/**/*}.{json{,5},md,y{,a}ml}": [
"prettier --write"
],
"**/package.json": [
"sort-package-json"
]
},
"prettier": "@abinnovision/prettier-config",
"devDependencies": {
"@abinnovision/commitlint-config": "^2.2.3",
"@abinnovision/prettier-config": "^2.1.5",
"@commitlint/cli": "^20.4.2",
"@vitest/coverage-v8": "^4.0.18",
"concurrently": "^9.2.1",
"husky": "^9.1.7",
"lint-staged": "^16.3.3",
"prettier": "^3.8.1",
"rimraf": "^6.1.3",
"sort-package-json": "^3.6.1",
"turbo": "^2.8.17",
"vitest": "^4.0.18"
},
"packageManager": "yarn@4.13.0"
}