-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.92 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.92 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@mittwald/flow-project",
"private": true,
"version": "0.0.0",
"packageManager": "pnpm@10.28.2",
"type": "module",
"license": "MIT",
"engines": {
"node": ">=20.19"
},
"scripts": {
"affected:test": "nx affected --targets=test:unit,test:compile",
"affected:test:browser": "nx affected --targets=test:browser,test:e2e,test:visual",
"build": "nx run-many --targets=build --exclude docs",
"clean": "nx reset",
"postclean": "nx run-many --targets=clean",
"dev": "nx build:deps $@ && concurrently \"yarn watch $@\" \"yarn nx dev $@\"",
"dev:init-githooks": "pnpm dlx simple-git-hooks",
"format": "prettier --write '**/*.{ts,tsx,yaml,yml,json,md,mdx,js,cjs,mjs,css}'",
"lint": "eslint . && stylelint '**/*.{css,scss}'",
"test": "nx run-many --targets=test:unit,test:compile",
"test:browser": "nx run-many --targets=test:browser,test:e2e,test:visual",
"test:browser:prepare": "pnpx playwright install --with-deps firefox webkit",
"test:visual": "nx run-many --targets=test:visual",
"watch": "nx watch --projects=\"$@\" --includeDependentProjects -- run nx build:deps \"$@\""
},
"simple-git-hooks": {
"post-checkout": "pnpm install && pnpm clean",
"post-merge": "pnpm install && pnpm clean",
"pre-commit": "pnpm lint"
},
"dependencies": {
"eslint-scope": "^9.1.0",
"react": "^19.2.0",
"react-dom": "^19.2.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@lerna-lite/cli": "^4.11.0",
"@lerna-lite/publish": "^4.11.1",
"@nx/devkit": "^22.4.4",
"@types/node": "^24.10.9",
"@types/verror": "^1.10.11",
"@types/yieldable-json": "^2.0.2",
"concurrently": "^9.2.1",
"depcheck": "^1.4.7",
"dot-prop": "^10.1.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-prettier": "^5.5.5",
"fs-jetpack": "^5.1.0",
"nx": "^22.4.4",
"playwright": "1.59.0",
"prettier": "^3.8.1",
"prettier-plugin-jsdoc": "^1.8.0",
"prettier-plugin-pkgsort": "^0.3.0",
"prettier-plugin-sort-json": "^4.2.0",
"react-docgen-typescript": "^2.4.0",
"simple-git-hooks": "^2.13.1",
"stylelint": "^17.0.0",
"stylelint-config-recommended-scss": "^17.0.0",
"stylelint-config-standard": "^40.0.0",
"stylelint-scss": "^7.0.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"verror": "^1.10.1",
"yieldable-json": "^2.1.0"
},
"pnpm": {
"patchedDependencies": {
"acorn": "patches/acorn.patch"
},
"onlyBuiltDependencies": [
"@bundled-es-modules/glob",
"@parcel/watcher",
"esbuild",
"msw",
"nx",
"sharp",
"simple-git-hooks",
"style-dictionary"
]
},
"resolutions": {
"react": "^19.2.0",
"react-dom": "^19.2.0",
"@types/react": "^19.2",
"@types/react-dom": "^19.2"
},
"workspaces": [
"packages/*",
"apps/*"
]
}