-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
102 lines (102 loc) · 2.62 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"type": "module",
"packageManager": "[email protected]",
"engines": {
"node": ">=20.x",
"pnpm": ">=9.x"
},
"dependencies": {
"@babel/core": "7.26.0",
"@babel/eslint-parser": "7.25.9",
"@babel/plugin-transform-runtime": "7.25.9",
"@babel/preset-env": "7.26.0",
"@babel/preset-react": "7.26.3",
"@babel/preset-typescript": "7.26.0",
"@biomejs/biome": "1.9.4",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.11",
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@eslint/eslintrc": "3.2.0",
"@scaleway/eslint-config-react": "workspace:*",
"@scaleway/tsconfig": "workspace:*",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.1.0",
"@types/jest": "29.5.14",
"@types/node": "22.10.6",
"@types/react": "19.0.7",
"@types/react-dom": "19.0.3",
"@vitejs/plugin-react": "4.3.4",
"@vitest/coverage-istanbul": "2.1.8",
"browserslist": "4.24.4",
"builtin-modules": "4.0.0",
"cross-env": "7.0.3",
"esbuild-plugin-browserslist": "0.15.0",
"eslint": "9.17.0",
"globals": "15.14.0",
"happy-dom": "16.5.3",
"husky": "9.1.7",
"lint-staged": "15.3.0",
"mockdate": "3.0.5",
"read-pkg": "9.0.1",
"shx": "0.3.4",
"tstyche": "3.3.1",
"typescript": "5.7.3",
"vite": "6.0.7",
"vitest": "2.1.8",
"vitest-localstorage-mock": "0.1.2",
"wait-for-expect": "3.0.2"
},
"scripts": {
"lint": "eslint --cache .",
"lint:fix": "pnpm run lint --fix",
"build": "pnpm recursive run build",
"commit": "npx git-cz -a",
"format": "biome format --write .",
"test": "pnpm recursive run test:unit",
"test:coverage": "pnpm run test --coverage",
"typecheck": "pnpm tsc --noEmit",
"test:types": "tstyche",
"release": "pnpm build && pnpm changeset publish",
"prepare": "husky install"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"react": "18 || 19",
"react-dom": "18 || 19",
"@types/react": "18 || 19"
}
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.(j|t)s?(x)": [
"biome format --write .",
"eslint --fix"
],
"*.json": [
"biome format --write ."
],
"*.y(a)ml,": [
"pnpm dlx prettier --write '**/*.{yml,yaml}' --single-quote"
],
"*.mdx": [
"biome format --write ."
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}