-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.75 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
{
"name": "@vkontakte/gh-actions",
"private": true,
"workspaces": {
"packages": [
"VKUI/*",
"vkui-tokens/*",
"shared/rust/cargo-update-toml",
"shared/*"
]
},
"scripts": {
"build": "yarn workspaces foreach -p -A run build",
"test": "yarn workspaces foreach -p -A 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",
"pre-commit": "lint-staged"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@swc/core": "^1.10.12",
"@swc/jest": "^0.2.37",
"@types/node": "^22.12.0",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"@vkontakte/eslint-plugin": "^2.0.0",
"@vkontakte/prettier-config": "^0.2.1",
"concurrently": "^9.1.2",
"esbuild": "^0.24.2",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"shx": "^0.3.4",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"yarn-deduplicate": "^6.0.2"
},
"prettier": "@vkontakte/prettier-config",
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint"
]
},
"resolutions": {
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0"
},
"packageManager": "[email protected]+sha512.5383cc12567a95f1d668fbe762dfe0075c595b4bfff433be478dbbe24e05251a8e8c3eb992a986667c1d53b6c3a9c85b8398c35a960587fbd9fa3a0915406728"
}