-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.41 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
{
"name": "@actlib/source",
"version": "1.0.0",
"license": "MIT",
"private": true,
"scripts": {
"preinstall": "npx only-allow yarn",
"upgrade-self": "yarn set version latest && yarn",
"up:nx": "nx migrate latest && nx migrate --run-migrations --if-exists",
"up:i": "yarn upgrade-interactive",
"prettier": "prettier --write .",
"lint:all": "yarn nx run-many -t lint",
"lint:fix": "eslint . --fix",
"build:all": "yarn nx run-many -t build",
"prepare": "husky",
"cmt": "npx cz",
"cq": "yarn prettier && yarn nx run-many -t lint && yarn nx run-many -t circular-deps",
"release": "yarn nx run-many -t build && tsx tools/release.ts"
},
"devDependencies": {
"@commitlint/cli": "19.8.1",
"@commitlint/config-nx-scopes": "19.8.1",
"@eslint/js": "9.39.4",
"@nx/eslint": "21.1.3",
"@nx/eslint-plugin": "21.1.3",
"@nx/js": "21.1.3",
"@nx/rollup": "21.1.3",
"@swc-node/register": "1.11.1",
"@swc/cli": "0.8.1",
"@swc/core": "1.15.33",
"@swc/helpers": "0.5.21",
"@trivago/prettier-plugin-sort-imports": "5.2.2",
"@types/fs-extra": "11.0.4",
"@types/node": "22.19.17",
"@types/react": "19.1.8",
"dpdm": "3.14.0",
"eslint": "9.39.4",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-check-file": "3.3.0",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-no-relative-import-paths": "1.6.1",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-plugin-react-native": "5.0.0",
"fs-extra": "11.3.4",
"husky": "9.1.7",
"jsonc-eslint-parser": "2.4.0",
"lint-staged": "16.1.2",
"nx": "21.1.3",
"prettier": "3.6.2",
"prettier-plugin-sort-json": "4.1.1",
"react": "19.1.0",
"react-native": "0.80.1",
"react-native-gesture-handler": "2.25.0",
"react-native-reanimated": "4.3.0",
"rollup": "4.46.2",
"swc-loader": "0.2.7",
"tslib": "2.8.1",
"tsx": "4.20.3",
"typescript": "5.8.3",
"typescript-eslint": "8.34.0"
},
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=22",
"yarn": ">=4.7.0"
},
"packageManager": "[email protected]"
}