-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
74 lines (74 loc) · 1.74 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=18.0",
"pnpm": ">=9.4.0"
},
"type": "module",
"scripts": {
"build": "pnpm recursive run build",
"build:profile": "cross-env PROFILE=true pnpm run build",
"commit": "npx git-cz -a",
"doc": "typedoc",
"format": "prettier --write '**/*.ts'",
"lint": "eslint --cache .",
"prepare": "husky",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --fix ."
],
"*.yaml": [
"prettier --write"
],
"*.json": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@scaleway/eslint-config-react": "4.0.8",
"@typescript-eslint/eslint-plugin": "latest",
"@vitest/coverage-istanbul": "2.0.5",
"@vitest/coverage-v8": "2.0.5",
"@vitest/ui": "2.0.5",
"babel-plugin-annotate-pure-calls": "0.4.0",
"browserslist": "4.23.3",
"cross-env": "7.0.3",
"cross-fetch": "4.0.0",
"cz-conventional-changelog": "3.3.0",
"esbuild-plugin-browserslist": "0.14.0",
"eslint": "9.14.0",
"eslint-plugin-tsdoc": "0.3.0",
"husky": "9.1.6",
"jsdom": "25.0.0",
"lerna": "8.1.8",
"lint-staged": "15.2.10",
"prettier": "3.3.2",
"read-pkg": "9.0.1",
"typedoc": "0.26.6",
"typescript": "5.5.4",
"vite": "5.4.6",
"vitest": "2.0.5"
},
"packageManager": "[email protected]"
}