-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·90 lines (90 loc) · 3.31 KB
/
package.json
File metadata and controls
executable file
·90 lines (90 loc) · 3.31 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "oss",
"private": true,
"workspaces": [
"apps/*",
"libs/*",
"tests/*",
"meta/*"
],
"scripts": {
"build": "turbo run build:cmd",
"build:all": "yarn build",
"clean": "turbo run clean && rimraf node_modules",
"g:build:pkg": "cd $INIT_CWD && $PROJECT_CWD/scripts/build_pkg.sh",
"g:check-dependency-version-consistency": "cd $INIT_CWD && check-dependency-version-consistency .",
"g:dpdm": "cd $INIT_CWD && dpdm --exit-code circular:1 --transform --no-warning --no-tree",
"g:eslint": "cd $INIT_CWD && eslint --config $PROJECT_CWD/eslint.config.mjs",
"g:knip": "knip --config $PROJECT_CWD/knip.config.ts",
"g:npm-package-json-lint": "cd $INIT_CWD && npmPkgJsonLint .",
"g:prettier": "cd $INIT_CWD && prettier --ignore-path $PROJECT_CWD/.prettierignore --log-level warn . '!**/*.{js,jsx,cjs,mjs,ts,tsx,cts,mts}'",
"g:rimraf": "cd $INIT_CWD && rimraf",
"g:run-p": "cd $INIT_CWD && run-p",
"g:tsc": "cd $INIT_CWD && tsc",
"g:tsc-alias": "cd $INIT_CWD && tsc-alias",
"g:turbo": "cd $INIT_CWD && turbo",
"g:vitest": "cd $INIT_CWD && vitest",
"lint": "run-p -c lint:eslint lint:prettier lint:packages",
"lint:eslint": "yarn g:eslint",
"lint:fix": "run-p -c \"g:eslint --fix\" \"g:prettier --write\" \"g:check-dependency-version-consistency --fix\"",
"lint:packages": "run-p -c \"g:npm-package-json-lint\" \"g:check-dependency-version-consistency\"",
"lint:prettier": "yarn g:prettier --check",
"lint:report": "run-p -c \"lint:eslint --format ./node_modules/@voiceflow/eslint-config/src/formatter.js --quiet\" lint:prettier lint:packages",
"test": "turbo run test:types test:unit test:cycles test:unused",
"test:cycles": "turbo run test:cycles",
"test:dependencies": "turbo run test:cycles test:unused",
"test:types": "turbo run test:types",
"test:unit": "vitest run --coverage",
"test:unused": "yarn g:knip"
},
"commitlint": {
"extends": [
"@voiceflow/commitlint-config"
]
},
"lint-staged": {
"*.{js,jsx,cjs,mjs,ts,tsx,cts,mts}": "eslint --fix",
"*.{md,json,yml,yaml,toml}": "prettier --write",
"**/package.json": "npmPkgJsonLint"
},
"prettier": "@voiceflow/prettier-config",
"resolutions": {
"browserslist": "4.28.1",
"tsconfig-paths": "npm:@voiceflow/tsconfig-paths@1.1.3"
},
"devDependencies": {
"@commitlint/cli": "20.2.0",
"@voiceflow/commitlint-config": "2.7.0",
"@voiceflow/eslint-config": "7.19.0",
"@voiceflow/eslint-plugin": "1.9.0",
"@voiceflow/git-branch-check": "1.5.0",
"@voiceflow/husky-config": "1.4.0",
"@voiceflow/knip-config": "1.1.1",
"@voiceflow/npm-package-json-lint-config": "1.2.1",
"@voiceflow/prettier-config": "1.12.1",
"@voiceflow/tsconfig": "1.13.1",
"@voiceflow/vitest-config": "1.12.0",
"check-dependency-version-consistency": "5.0.1",
"dpdm-fast": "1.0.14",
"eslint": "9.39.2",
"knip": "5.85.0",
"lint-staged": "16.2.7",
"npm-package-json-lint": "9.0.0",
"npm-run-all": "4.1.5",
"prettier": "3.7.4",
"rimraf": "6.1.2",
"source-map-support": "0.5.21",
"tsc-alias": "1.8.16",
"turbo": "1.13.4",
"typescript": "5.9.3",
"vitest": "4.0.12"
},
"packageManager": "yarn@3.2.1",
"engines": {
"node": "20"
},
"volta": {
"node": "20.17.0",
"yarn": "3.2.1"
}
}