-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.6 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
{
"name": "@vkontakte/gh-actions",
"private": true,
"workspaces": {
"packages": [
"VKUI/*",
"vkui-tokens/*",
"shared/rust/cargo-update-toml"
]
},
"scripts": {
"build": "yarn workspaces run build",
"test": "yarn workspaces run test",
"lint": "concurrently 'yarn:lint:*'",
"lint:es": "eslint . --ext .jsx,.js,.ts,.tsx --cache --cache-location .cache/.eslintcache",
"lint:types": "tsc --incremental --tsBuildInfoFile .cache/.tsbuildinfo",
"prepare": "husky install",
"pre-commit": "lint-staged",
"deduplicate": "yarn-deduplicate --list && yarn-deduplicate --fail"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@swc/core": "^1.8.0",
"@swc/jest": "^0.2.37",
"@types/node": "^22.9.0",
"@vkontakte/eslint-plugin": "^2.0.0",
"@vkontakte/prettier-config": "^0.2.1",
"concurrently": "^9.1.0",
"esbuild": "^0.24.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"shx": "^0.3.4",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"yarn-deduplicate": "^6.0.2"
},
"prettier": "@vkontakte/prettier-config",
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint"
]
},
"engines": {
"yarn": "^1.21.1"
},
"resolutions": {
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0"
},
"packageManager": "[email protected]"
}