-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.89 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
53
54
55
56
57
58
59
60
{
"private": true,
"workspaces": [
"captive-*"
],
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean",
"format": "turbo run format --continue",
"format:root": "concurrently \"npm:format:root:*\" \":\"",
"format:root:eslint": "eslint . --ext=mjs,cjs,js,jsx,ts,tsx,json,jsonc,json5,yml,yaml --ignore-pattern='captive-*/**' --fix",
"format:root:rubocop": "bundle exec rubocop --no-server Gemfile *.rb -a",
"lint": "turbo run lint",
"lint:root": "concurrently \"npm:lint:root:*\" \":\"",
"lint:root:eslint": "eslint . --ext=mjs,cjs,js,jsx,ts,tsx,json,jsonc,json5,yml,yaml --ignore-pattern='captive-*/**'",
"lint:root:rubocop": "bundle exec rubocop --no-server Gemfile *.rb",
"postinstall": "npm run prepare",
"prepare": "concurrently \"npm:prepare:*\" \":\"",
"prepare:githooks": "[ -n \"${CI:-}\" ] || npx husky install .githooks",
"prepare:packages": "turbo run prepare",
"spellcheck": "turbo run spellcheck",
"spellcheck:root": "npx cspell --no-progress '**' --exclude='captive-*/**'",
"test": "turbo run test",
"validate": "turbo build lint test spellcheck"
},
"commitlint": {
"extends": [
"@captive/commitlint-config"
]
},
"eslintConfig": {
"root": true,
"extends": [
"@captive/eslint-config",
"./.eslint_todo.cjs"
],
"parserOptions": {
"project": "./tsconfig.json"
}
},
"stylelint": {
"extends": [
"@captive/stylelint-config",
"./.stylelint_todo.cjs"
]
},
"devDependencies": {
"@captive/commitlint-config": "2.1.15",
"@captive/cspell-config": "2.4.21",
"@captive/eslint-config": "2.0.32",
"@captive/stylelint-config": "3.1.0",
"@captive/ts-config": "2.4.1",
"concurrently": "9.1.2",
"eslint": "9.22.0",
"prettier": "3.5.3",
"stylelint": "16.15.0",
"turbo": "1.13.4"
},
"packageManager": "[email protected]"
}